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