Skip to content

Instantly share code, notes, and snippets.

@froggey
Created September 4, 2018 22:26
Show Gist options
  • Select an option

  • Save froggey/28f54d019f7c6cd9ffb3b2dd84e956d7 to your computer and use it in GitHub Desktop.

Select an option

Save froggey/28f54d019f7c6cd9ffb3b2dd84e956d7 to your computer and use it in GitHub Desktop.
(let* ((obj (make-instance 'standard-object))
(test (list obj)))
(format t "~:S~%" test)
(setf test (remove obj test))
(format t "~:S~%" test))
;; Prints
;; (#<Standard-Object 4000046F3069>)
;; ()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment