fork(1) download
  1. // Ever wonder how deep hell could be?
  2.  
  3. count = 0;
  4.  
  5. function hell(count) {
  6. count += 1;
  7. hell();
  8. }
  9.  
  10. try {
  11. hell();
  12. }
  13. catch (RangeError) {
  14. console.log(count);
  15. }
Success #stdin #stdout 0.06s 18356KB
stdin
Standard input is empty
stdout
0