jak-project/goal_src/test/test-set-symbol.gc
2020-09-13 17:34:02 -04:00

19 lines
197 B
Common Lisp

(defun burp ((thing integer))
(* thing 3)
)
(define thing 2)
(set! thing 3)
(+ (let ((thing 4))
(set! thing (+ thing 1))
thing
)
(burp thing)
(set! thing 4)
thing
)