Skip to content

Instantly share code, notes, and snippets.

@arohner
Created August 10, 2011 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arohner/1138179 to your computer and use it in GitHub Desktop.
Save arohner/1138179 to your computer and use it in GitHub Desktop.
(defmacro inspect
"prints the expression '<name> is <value>', and returns the value"
[value]
`(let [result# ~value]
(println '~value "is" (with-out-str (clojure.pprint/pprint result#)))
result#))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment