bldc/tests/test_let_12.lisp

4 lines
67 B
Common Lisp

(let ((f (lambda (x) (if (= x 0) 0 (f (- x 1))))))
(= (f 2) 0))