Skip to content

Instantly share code, notes, and snippets.

@JackBracken
Created February 17, 2014 17:23
Show Gist options
  • Save JackBracken/9054985 to your computer and use it in GitHub Desktop.
Save JackBracken/9054985 to your computer and use it in GitHub Desktop.
int i = 0;
System.out.println("OUTPUT:");
if(true) {
i++;
System.out.println(i);
}
/*
OUTPUT:
0
0
0
0
0
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment