getting out of for loop scala 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 > 3
if i < 6
if i % 2 == 0
} println(i)