ruby--ruby/benchmark/loop_whileloop.rb

5 lines
57 B
Ruby

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