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