Answers for "loop from 1 to n in scala"

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 <- 0 until names.length) {
    println(s"$i is ${names(i)}")
}
Posted by: Guest on March-06-2020

Code answers related to "Scala"

Browse Popular Code Answers by Language