rubyx/test/bench/ruby/loop.rb
Torsten 6b1c316f04 add simple loop bench
fiddled with run numbers a bit
recording times with noop removed
results slightly worse than hoped
2019-07-31 21:18:03 +03:00

6 lines
60 B
Ruby

counter = 1000000
while(counter > 0) do
counter -= 1
end