sbcl.sbcl/tests/block-compile-test-2.lisp
2020-02-14 17:37:57 -08:00

8 lines
105 B
Common Lisp

(defun foo1 (x y)
(bar2 x y))
(defun bar2 (x y)
(if (zerop x)
y
(foo1 (1- x) (* y x))))