Torsten
6b1c316f04
fiddled with run numbers a bit recording times with noop removed results slightly worse than hoped
9 lines
162 B
Ruby
9 lines
162 B
Ruby
|
|
counter = 10000;
|
|
while(counter > 0) do
|
|
puts "Hello there"
|
|
# roughly 4 times slower with this, which is like rubyx
|
|
STDOUT.flush
|
|
counter = counter - 1
|
|
end
|