fork download
  1. puts Time.now
  2. puts RUBY_DESCRIPTION
  3. code = '+1' * 200_000
  4. 2.times {begin; p eval(code); rescue SystemStackError => e; p e; end}
  5. puts "We made it!"
Success #stdin #stdout 0.49s 291840KB
stdin
Standard input is empty
stdout
2017-05-24 09:18:07 +0000
ruby 2.3.3p222 (2016-11-21) [x86_64-linux-gnu]
200000
200000
We made it!