Skip to content

Instantly share code, notes, and snippets.

@dariogabriel113
Last active June 30, 2018 04:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dariogabriel113/e36d7f31dd569d4166c76cddc586f190 to your computer and use it in GitHub Desktop.
Save dariogabriel113/e36d7f31dd569d4166c76cddc586f190 to your computer and use it in GitHub Desktop.
public class TestFor {
public static void main(String[] args) {
for (int count = 0; count <= 10; count++) {
System.out.println(count);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment