Skip to content

Instantly share code, notes, and snippets.

@edlich
Last active August 29, 2015 14:09
Show Gist options
  • Save edlich/8a9cdc261e482f55d16e to your computer and use it in GitHub Desktop.
Save edlich/8a9cdc261e482f55d16e to your computer and use it in GitHub Desktop.
Clojure Spy Macro
(defmacro spy
[& body]
`(let [x# ~@body]
(printf "=> %s = %s\n" (first '~body) x#)
x#))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment