Skip to content

Instantly share code, notes, and snippets.

@taitruong
Last active August 29, 2015 13:57
Show Gist options
  • Save taitruong/9466336 to your computer and use it in GitHub Desktop.
Save taitruong/9466336 to your computer and use it in GitHub Desktop.
two line operator, parenthesis, 3
object ScalaHackSession {
var a = 0 //> a : Int = 0
if (a < 10) a = a + 1
println(a) //> 1
if (a < 10) a = (a
+ 1)
println(a) //> 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment