/** * This method fetches an integer value of five from the top of the call stack, which is as high as you can get * @return a high five */ public static int five() { try { return five(); } catch (StackOverflowError e) { return 5; } }