Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 31, 2015 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/fc5db98f2bf63d2891b3 to your computer and use it in GitHub Desktop.
Save shigemk2/fc5db98f2bf63d2891b3 to your computer and use it in GitHub Desktop.
for (i <- 1 to 10 if i % 2 == 0) println(i)
println("-----------")
for {
i <- 1 to 10
if i % 2 == 0
} println(i)
println("-----------")
for {
i <- 1 to 10
if i > 3
if i < 6
if i % 2 == 0
} println(i)
println("-----------")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment