raspberry-pi-pico-machine-c.../compiler/scripts/faculty.lisp

5 lines
113 B
Common Lisp
Raw Normal View History

2022-05-15 22:32:35 +02:00
(defun faculty:uint32 (input:uint32)
(if (< input 2) 1 (* input (faculty (- input 1))))
)
(print (faculty 10))