Torsten
6273ab769c
With #26 out of the way, was able to get meaningful rubyx benchmarks. Meaning loops large enough for the exec time to go significantly over the noop. Did mruby too and as expected got much lower noop
9 lines
164 B
Ruby
9 lines
164 B
Ruby
|
|
counter = 100000;
|
|
while(counter > 0) do
|
|
puts "Hello there"
|
|
# roughly 4 times slower with this, which is like rubyx
|
|
#STDOUT.flush
|
|
counter = counter - 1
|
|
end
|