Plaster

common-lisp
(let ((foo nil)) (format t "Setting foo to T~%") (set 'foo t) (format t "foo is ~a~%" foo)) ;; Setting foo to T ;; foo is NIL