for loop scala range code example
Example 1: how loop in scala
for ((name, count) <- names.zipWithIndex) {
println(s"$count is $name")
}
Example 2: how loop in scala
for {
i <- 1 to 10
if i < 4
} println(i)
for ((name, count) <- names.zipWithIndex) {
println(s"$count is $name")
}
for {
i <- 1 to 10
if i < 4
} println(i)