Print a value from the sneaky store.
(sneaky-cw name) → *
Example:
(sneaky-save 'foo 3) (sneaky-cw 'foo) ; prints 3, returns nil
In the logic,
Function:
(defun sneaky-cw (name) (declare (xargs :guard t)) (let ((__function__ 'sneaky-cw)) (declare (ignorable __function__)) (sneaky-mutate 'sneaky-cw-mutator (list name) name)))