rubyx/test/bench/rubyx/hello.rb
Torsten Rüger d3a0aa3d8e redid benchmarks with new options
especially calling did improve
also binaries don't get crazy big even for bigger heaps, because they are just ints
2019-08-24 16:03:35 +03:00

12 lines
170 B
Ruby

class Space
# ran with --parfait=21000
def main(arg)
b = 10000
while( b >= 1 )
b = b - 1
"Hello-there\n".putstring
end
return b
end
end