home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacFormat 1994 October
/
macformat-005.iso
/
Shareware City
/
Developers
/
xlispmac
/
lisp
/
FACT.LSP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
Lisp/Scheme
|
1994-05-28
|
94 b
|
5 lines
|
[
TEXT/xlsp
]
(defun fact (n)
(cond ((zerop n) 1)
((= n 1) 1)
(t (* n (fact (- n 1))))))