bldc/tests/test_let_9.lisp

6 lines
108 B
Common Lisp

(let ((f (lambda (x)
(let ((f (lambda (x) (+ x 10))))
(f 100)))))
(= (f 0) 110))