home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 October / macformat-005.iso / Shareware City / Developers / xlispmac / lisp / FACT.LSP < prev    next >
Encoding:
Lisp/Scheme  |  1994-05-28  |  94 b   |  5 lines  |  [TEXT/xlsp]

  1. (defun fact (n)
  2.        (cond ((zerop n) 1)
  3.          ((= n 1) 1)
  4.          (t (* n (fact (- n 1))))))
  5.