Skip to content

Instantly share code, notes, and snippets.

@moriyoshi
Last active December 17, 2015 03:39
Show Gist options
  • Save moriyoshi/5544989 to your computer and use it in GitHub Desktop.
Save moriyoshi/5544989 to your computer and use it in GitHub Desktop.
public class Life {
public static void main(String[] args) {
try {
do {
good_and_bad_things();
} while (being_well_off());
} finally {
we_all_die();
}
}
public static void good_and_bad_things() {
}
public static boolean being_well_off() {
return true; // :-)
}
public static void we_all_die() {
// ;-(
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment