Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 21, 2015 13:57
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/6dcc85cf09c4c15bf77e to your computer and use it in GitHub Desktop.
Save shigemk2/6dcc85cf09c4c15bf77e to your computer and use it in GitHub Desktop.
var a = 1
a += 1
println(a)
a -= 1
println(a)
var i = 1
i *= 2
println(i)
i *= 2
println(i)
i /= 2
println(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment