Skip to content

Instantly share code, notes, and snippets.

@tmountain
Created March 3, 2010 19:00
Show Gist options
  • Save tmountain/320870 to your computer and use it in GitHub Desktop.
Save tmountain/320870 to your computer and use it in GitHub Desktop.
public class T {
public static void main(String[] args) {
Thread t = new Thread(new Runnable() {
public void run() {
int i = 5 / 0;
}
});
t.start();
try {
Thread.sleep(1000);
} catch (InterruptedException e) { }
System.out.println("Oh I'm... I I... I'm still alive");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment