Macro: WITH-GENSYMS
Source
(defmacro with-gensyms (syms &body body) `(let ,(loop for s in syms collect `(,s (gensym))) ,@body))
Source Context