fork download
  1. var a = {};
  2.  
  3. function foo(obj)
  4. {
  5. obj.a = {};
  6. while(true)
  7. {
  8. obj = obj.a;
  9. foo(obj);
  10. }
  11. }
  12.  
  13. foo(a);
Runtime error #stdin #stdout 0.02s 5248KB
stdin
Standard input is empty
stdout
Standard output is empty