I\'m trying to implement the following function, but it keeps giving me the stack level too deep (SystemStackError) error.
stack level too deep (SystemStackError)
Any ideas what the problem mi
i think this is pretty easy:
def fibo(n) a=0 b=1 for i in 0..n c=a+b print "#{c} " a=b b=c end end