Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created March 31, 2016 23:39
Show Gist options
  • Save amalloy/ef87f4e0aa86b46b075c8275c16fab35 to your computer and use it in GitHub Desktop.
Save amalloy/ef87f4e0aa86b46b075c8275c16fab35 to your computer and use it in GitHub Desktop.
(defmacro preval [[f & args]]
(let [syms (map (fn [_] (gensym)) args)]
`(let [~@(interleave syms args)]
(prn (list '~f ~@syms))
(~f ~@syms))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment