rubyx/test/mains/source/fibo__8.rb
Torsten Ruger 8d369dbfa1 automate mains test more
move sources and include exit code and stdout in filename
2018-06-24 13:37:36 +03:00

12 lines
107 B
Ruby

n = 6
a = 0
b = 1
i = 1
while( i < n )
result = a + b
a = b
b = result
i = i + 1
end
return result