rubyx/stash/fibo_times.ruby
2014-05-22 19:34:13 +03:00

13 lines
129 B
Ruby

def fibonaccit(n)
a = 0
b = 1
(n-1).times do
tmp = a
a = b
b = tmp + b
puts b
end
end
fibonaccit( 10 )