ruby--ruby/benchmark/bm_vm1_rescue.rb

8 lines
74 B
Ruby

i = 0
while i<30_000_000 # while loop 1
i+=1
begin
rescue
end
end