Last active
December 17, 2015 03:39
-
-
Save moriyoshi/5544989 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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