transcendental-lisp/lisp/random/fact.lisp

4 lines
59 B
Common Lisp
Raw Normal View History

2016-12-07 14:16:45 -05:00
(defun fact (x)
(if (< x 2) 1
2017-03-06 11:00:18 -05:00
(* x (fact (- x 1)))))