raspberry-pi-pico-machine-c.../compiler/scripts/faculty.lisp
2022-05-15 22:32:35 +02:00

4 lines
113 B
Common Lisp

(defun faculty:uint32 (input:uint32)
(if (< input 2) 1 (* input (faculty (- input 1))))
)
(print (faculty 10))