implicit val suits = List("clubs", "spades", "hearts", "diamonds")


def println(x: Int) = Console.println(x)


println(42)


출력값은?