ruby--ruby/benchmark/bm_app_raise.rb

9 lines
63 B
Ruby

i=0
while i<300000
i+=1
begin
raise
rescue
end
end