aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm1_rescue.rb
blob: b0d3e2bdfab63043fdc7ce4ad85f69b461b40d14 (plain)
1
2
3
4
5
6
7
i = 0
while i<30_000_000 # while loop 1
  i += 1
  begin
  rescue
  end
end