Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
object MyClass { def main(args: Array[String]): Unit = { val lst = List(List(1, 9), List(7, 18), List(15, 3)); println(lst); } } /* run: List(List(1, 9), List(7, 18), List(15, 3)) */