ruby--ruby/benchmark/bm_vm1_rescue.rb

8 lines
76 B
Ruby

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