Last active
December 18, 2015 08:39
-
-
Save xianminx/5756106 to your computer and use it in GitHub Desktop.
This file contains 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 WorkOut{ | |
public static void main(String[] args){ | |
workHard(); | |
System.out.println("It's nap time."); | |
} | |
private static void workHard(){ | |
try{ | |
workHard(); | |
}finally{ | |
workHard(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment