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


  • fibonacci_series.1181210782.txt.gz
  • Last modified: 2007-06-07 10:06
  • by nik