start to add while loop

This commit is contained in:
Torsten Ruger
2014-05-10 19:02:51 +03:00
parent e600911fe8
commit 47f1608685
9 changed files with 89 additions and 4 deletions

View File

@ -0,0 +1,13 @@
def fibonaccit(n)
a = 0
b = 1
while n > 1 do
tmp = a
a = b
b = tmp + b
puts b
n = n - 1
end
end
fibonaccit( 10 )