Skip to content

Instantly share code, notes, and snippets.

@xianminx
Last active December 18, 2015 08:39
Show Gist options
  • Save xianminx/5756106 to your computer and use it in GitHub Desktop.
Save xianminx/5756106 to your computer and use it in GitHub Desktop.
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