Assign a value into the sneaky store.
(sneaky-save name what) → *
Example:
(sneaky-save 'foo 3) (sneaky-load 'foo state) --> (mv 3 state)
In the logic,
See also sneaky-mutate for a more general way of manipulating the sneaky store.
Function:
(defun sneaky-save (name what) (declare (xargs :guard t)) (let ((__function__ 'sneaky-save)) (declare (ignorable __function__)) (sneaky-mutate 'sneaky-save-mutator nil (cons name what))))