-
-
Save benjholla/a8a3d53f0d27a271ca36f63fe3afe222 to your computer and use it in GitHub Desktop.
Java Puzzle 9 (spot the bug if one exists)
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 Puzzle9 { | |
public static void main(String[] args) { | |
recurse(); | |
} | |
private static void recurse() { | |
try { | |
recurse(); | |
} finally { | |
recurse(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #45