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