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

5
test/bench/ruby/loop.rb Normal file
View File

@ -0,0 +1,5 @@
counter = 100000
while(counter > 0) do
counter = counter - 1
end