bldc/tests/test_qq_11.lisp

10 lines
129 B
Common Lisp

(defun f (a)
`(+ b ,a))
(check (let ((b 101))
(and (= (eval (f 1)) 102)
(= (eval (f 100)) 201))))