Skip to content

Instantly share code, notes, and snippets.

@Hc747
Created September 19, 2018 06:02
Show Gist options
  • Save Hc747/f9fd038c3b86dce04a4e3f54eba8840a to your computer and use it in GitHub Desktop.
Save Hc747/f9fd038c3b86dce04a4e3f54eba8840a to your computer and use it in GitHub Desktop.
outer:
for (int i = 0; i < Integer.MAX_VALUE; i++) {
for (int j = 0; j < Integer.MAX_VALUE; j++) {
if (i == 1 && j == i) {
break outer;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment