Contact: aviboots(AT)netvision.net.il
40,875 questions
53,283 answers
573 users
object O { def main(args: Array[String]): Unit = { val vector = Vector(5, 9, 2, 8, 1) val lst = vector.toList lst.foreach(println(_)) } } /* run: 5 9 2 8 1 */