Skip to content

Instantly share code, notes, and snippets.

@heapwolf
Created July 21, 2010 05:24
Show Gist options
  • Save heapwolf/484109 to your computer and use it in GitHub Desktop.
Save heapwolf/484109 to your computer and use it in GitHub Desktop.
o : while (x) {
while (y) {
if (a) {
continue o; // previously known as insanity, found a use for insanity today! =)
}
if (b) {
continue;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment