80264c5322
not wrapping as main anymore (must still include mains) first part of #11
12 lines
131 B
Ruby
12 lines
131 B
Ruby
class Space
|
|
def main(arg)
|
|
a = 0
|
|
b = 20
|
|
while( a < b )
|
|
a = a + 1
|
|
b = b - 1
|
|
end
|
|
return a
|
|
end
|
|
end
|