Skip to content

Instantly share code, notes, and snippets.

@CodyReichert
Created August 19, 2015 02:03
Show Gist options
  • Save CodyReichert/0f090a1aedb4e03c3c89 to your computer and use it in GitHub Desktop.
Save CodyReichert/0f090a1aedb4e03c3c89 to your computer and use it in GitHub Desktop.
(defmacro with-gensyms ((&rest names) &body body)
`(let ,(loop for n in names collect `(,n (gensym)))
,@body))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment