Skip to content

Instantly share code, notes, and snippets.

@fstamour
Created July 18, 2019 00:13
Show Gist options
  • Save fstamour/062559a5e02299c2a479b2644166a219 to your computer and use it in GitHub Desktop.
Save fstamour/062559a5e02299c2a479b2644166a219 to your computer and use it in GitHub Desktop.
(defun box (thing) (cons :box thing))
(defun ref (box)
(assert (eq (car box) :box))
(cdr box))
(defun (setf ref) (value box)
(assert (eq (car box) :box))
(setf (cdr box) value))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment