Skip to content

Instantly share code, notes, and snippets.

Created March 27, 2014 22:12
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save anonymous/701be787292f36ac825e to your computer and use it in GitHub Desktop.
Kablooie without unary increment
for (int i = 0; i < 5; i = i + 1)
{
// i = i + 1 ??! Dude, who writes that anymore?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment