home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Carousel Volume 2 #1
/
carousel.iso
/
mactosh
/
lang
/
xlisp.sha
/
fact.lsp
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lisp/Scheme
|
1985-02-17
|
84 b
|
4 lines
(defun factorial (n)
(cond ((= n 1) 1)
(t (* n (factorial (- n 1))))))