rubyx/test/mains/source/subs__0.rb
Torsten Ruger 80264c5322 mains tests can include any code
not wrapping as main anymore
(must still include mains)
first part of #11
2018-08-18 19:42:14 +03:00

10 lines
106 B
Ruby

class Space
def main(arg)
b = 10
while( b >= 1 )
b = b - 1
end
return b
end
end