80264c5322
not wrapping as main anymore (must still include mains) first part of #11
10 lines
106 B
Ruby
10 lines
106 B
Ruby
class Space
|
|
def main(arg)
|
|
b = 10
|
|
while( b >= 1 )
|
|
b = b - 1
|
|
end
|
|
return b
|
|
end
|
|
end
|