add ruby bench programs and numbers

This commit is contained in:
Torsten Ruger
2015-11-24 15:33:16 +02:00
parent 535757fa98
commit fa63c6db6a
10 changed files with 62 additions and 3 deletions

7
test/bench/ruby/hello.rb Normal file
View File

@ -0,0 +1,7 @@
counter = 100352 - 352;
while(counter > 0) do
puts "Hello there"
STDOUT.flush
counter = counter - 1
end