Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Created October 16, 2017 06:28
Show Gist options
  • Save JavierCane/03181acb96f9016a5af25cc354b458cb to your computer and use it in GitHub Desktop.
Save JavierCane/03181acb96f9016a5af25cc354b458cb to your computer and use it in GitHub Desktop.
Scala for examples for the CodelyTV Pro Scala course
val lele = if ("Codely mola".isInstanceOf[String]) 3 else 7
var total = 0
for (value <- 1 to 10) {
total = total + value
println(value)
}
(1 to 10).foreach(value2 => {
println(value2)
})
(1 to 10).foreach(println(_))
(1 to 10).foreach(println)
(1 to 10) foreach println
(1 to 10).sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment