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