80264c5322
not wrapping as main anymore (must still include mains) first part of #11
16 lines
189 B
Ruby
16 lines
189 B
Ruby
class Space
|
|
def main(arg)
|
|
n = 6
|
|
a = 0
|
|
b = 1
|
|
i = 1
|
|
while( i < n )
|
|
result = a + b
|
|
a = b
|
|
b = result
|
|
i = i + 1
|
|
end
|
|
return result
|
|
end
|
|
end
|