Skip to content

Instantly share code, notes, and snippets.

@Scriptor
Created February 28, 2012 10:22
Show Gist options
  • Save Scriptor/1931752 to your computer and use it in GitHub Desktop.
Save Scriptor/1931752 to your computer and use it in GitHub Desktop.
(defmacro debug-block [& lines]
(let [debugged-lines
(map (fn [line]
(if (list? line)
(conj line 'debug)
line))
lines)]
debugged-lines))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment