Contact: aviboots(AT)netvision.net.il
40,954 questions
53,418 answers
573 users
object O { def main(args: Array[String]): Unit = { val lst = List(List(3, 5, 6, 1), List(8, 9, 2), List(7, 4)) lst.foreach(_.foreach(println(_))) } } /* run: 3 5 6 1 8 9 2 7 4 */