fork(3) download
  1. public class Main {
  2. public static void main(final String[] args) throws Exception {
  3. System.out.println("a");
  4. doAnything(0);
  5. System.out.println("b");
  6. }
  7.  
  8. private static void doAnything(int i) {
  9. try {
  10. doAnything(i + 1);
  11. } catch (final Error e) {
  12. System.out.println(i);
  13. }
  14. }
  15. }
Success #stdin #stdout 0.07s 380160KB
stdin
Standard input is empty
stdout
a
716771667165716471637162716171607159
b