Skip to content

Instantly share code, notes, and snippets.

@ellbur
Created November 15, 2011 20:12
Show Gist options
  • Select an option

  • Save ellbur/1368181 to your computer and use it in GitHub Desktop.

Select an option

Save ellbur/1368181 to your computer and use it in GitHub Desktop.
Stack runneth over
public class Overflow {
public static void main(String[] args) {
foo();
}
static void foo() {
foo();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment