bldc/tests/test_progn_var_0.lisp

12 lines
100 B
Common Lisp

(defun t1 ()
(progn
1
(var x 10)
2
(var y 5)
(+ x y)))
(check (= (t1) 15))