rubyx/test/bench/ruby/hello.rb
Torsten 00bf38a0e6 updating benchmarks
on the new machine, consistent
not rubyx yet
2019-07-23 20:14:28 +03:00

7 lines
90 B
Ruby

counter = 100000;
while(counter > 0) do
puts "Hello there"
counter = counter - 1
end