I have a file: test.lisp with this content: (+ 3 3) (let ((n 3)) (+ n 1)) (let ((n 4)) (+ n 1)) (defun d (f) (let ((n 3) (f 4) (g 3)) (if (=
I'm getting an error when loading a function that contains an atomic operation. As a simple example, the file test.lisp contains: (defparameter *count* 0) (def