(define (add-2 x) (+ x 2)) (add-2 z)
(defun add-2 (x) (+ x 2)) (add-2 z)
* Continue, where we retry the operation (best to first define z),
* Use Value, where we can provide a value to use,
* Store Value, where we can set z to a value and use the value,
* Abort, where we just cancel the operation.
There's also setf expansions, so in SBCL we can do, for example:
(setf (car some-pair) 3)
(set! (car some-pair) 3)