Skip to content

Instantly share code, notes, and snippets.

@heapwolf
Created June 18, 2010 04:26
Show Gist options
  • Save heapwolf/443232 to your computer and use it in GitHub Desktop.
Save heapwolf/443232 to your computer and use it in GitHub Desktop.
function doit() {
INSANITY:
for(var i=1; i < 20; i++) {
if(i == 10) {
continue INSANITY;
}
print(i);
}
}
doit();
@heapwolf
Copy link
Author

Its like a cockroach crawled out from behind the specification refrigerator...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment