home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
prog_oth
/
xlisp16.lzh
/
XLISP1.6
/
FIB.LSP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Lisp/Scheme
|
1991-11-01
|
93 b
|
7 lines
(defun fib (x)
(if (< x 2)
x
(+ (fib (1- x)) (fib (- x 2)))))