home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / x_lisp / fib.lsp < prev    next >
Encoding:
Lisp/Scheme  |  1994-09-22  |  93 b   |  4 lines

  1. (defun fib (x)
  2.        (cond ((< x 2) 1)
  3.              (t (+ (fib (1- x)) (fib (- x 2))))))
  4.