Answers for "loop for scala example"

1

how loop in scala

for ((name, count) <- names.zipWithIndex) {
    println(s"$count is $name")
}
Posted by: Guest on March-06-2020
0

how loop in scala

for (i <- 1 to 10 if i < 4) println(i)
Posted by: Guest on March-06-2020
0

how loop in scala

res: Seq[(Int, Char)] = List((1,a), (1,b), (1,c), 
                             (2,a), (2,b), (2,c),
                             (3,a), (3,b), (3,c))
Posted by: Guest on March-06-2020

Code answers related to "Scala"

Browse Popular Code Answers by Language