This is an old revision of the document!


(defun fibonacci (n)
  (if (<= n 2) 
      1 
      (+ (fibonacci (- n 1)) (fibonacci (- n 2))))))

Libarynth > Main Web > OnGrowthAndForm > FibonacciSeries r1 - 24 Jun 2004 - 14:03