Torsten
95af84e752
and extract own kind of same tests to bench bench tests will need some loop, but not as large as c
17 lines
208 B
Ruby
17 lines
208 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
|
|
#Space.new.main(1)
|