coming together, more and more each day

This commit is contained in:
Torsten Ruger
2014-05-13 21:06:12 +03:00
parent f6711ea49c
commit 04af367bc0
8 changed files with 45 additions and 28 deletions

View File

@ -5,7 +5,7 @@ def fibonaccit(n)
tmp = a
a = b
b = tmp + b
puts(b)
putstring(b)
n = n - 1
end
end