2019-07-25 21:25:15 +03:00
|
|
|
class Space
|
2019-08-24 16:03:35 +03:00
|
|
|
# ran with --parfait=21000
|
2019-07-25 21:25:15 +03:00
|
|
|
def main(arg)
|
2019-07-30 13:55:29 +03:00
|
|
|
b = 10000
|
2019-07-25 21:25:15 +03:00
|
|
|
while( b >= 1 )
|
|
|
|
b = b - 1
|
|
|
|
"Hello-there\n".putstring
|
|
|
|
end
|
|
|
|
return b
|
|
|
|
end
|
|
|
|
end
|