Skip to content

Instantly share code, notes, and snippets.

@ponkotuy
Created July 3, 2014 02:05
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 ponkotuy/67f57d187789a567a3d8 to your computer and use it in GitHub Desktop.
Save ponkotuy/67f57d187789a567a3d8 to your computer and use it in GitHub Desktop.
Scala for sample
for {
i <- 1 to 9
j <- 1 to 9
if i != j
result = s"($i, $j)"
} {
println(result)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment