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