Answers for "for loop on scala"

0

how loop in scala

val lengths = for (e <- names) yield {
    // imagine that this required multiple lines of code
    e.length
}
Posted by: Guest on March-06-2020
0

how loop in scala

for (n <- names) println(n)
for (n <- names) println(n.capitalize)    
for (n <- names) {
    // imagine this requires several lines
    println(n.capitalize)
}
Posted by: Guest on March-06-2020

Code answers related to "Scala"

Browse Popular Code Answers by Language