Skip to content

Instantly share code, notes, and snippets.

@shirok
Created February 23, 2013 14:05
Show Gist options
  • Save shirok/5019888 to your computer and use it in GitHub Desktop.
Save shirok/5019888 to your computer and use it in GitHub Desktop.
(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