Torsten Rüger
d3a0aa3d8e
especially calling did improve also binaries don't get crazy big even for bigger heaps, because they are just ints
12 lines
170 B
Ruby
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
|