Created
February 23, 2013 14:05
-
-
Save shirok/5019888 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
(define (copy-instance obj) | |
(rlet1 new (make (class-of obj)) | |
(dolist [slot (class-slots (class-of obj))] | |
(set! (~ new (slot-definition-name slot)) | |
(~ obj (slot-definition-name slot)))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment