bldc/tests/test_refmut_1.lisp

9 lines
78 B
Common Lisp

(define a (cons 1 2))
(setcar a 199)
(and (= (car a) 199) (= (cdr a) 2))