Skip to content

Instantly share code, notes, and snippets.

@s4nchez
Created March 11, 2010 08:24
Show Gist options
  • Save s4nchez/328961 to your computer and use it in GitHub Desktop.
Save s4nchez/328961 to your computer and use it in GitHub Desktop.
public static void main(String... args){
int i = 0;
for (i = 0; i < 10; i++) {
System.out.println("i=" + i);
}
System.out.println("final i=" + i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment