Files
pylisp/examples/factorial_dambda.lsp
T

6 lines
74 B
Common Lisp

(def fact (dambda (n) (
if (_<_ n 2) 1
(_*_ n (fact (_-_ n 1)))
)))