Created
September 4, 2018 22:26
-
-
Save froggey/28f54d019f7c6cd9ffb3b2dd84e956d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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