Created
May 24, 2010 09:21
-
-
Save tgk/411683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defmacro todo | |
"Annotates a form with a comment for later review. | |
Adds the comment and the form to the batch of todos, which | |
can be revied later using todo-summary." | |
[comment & more] | |
(do | |
(save-code-and-snippet comment (apply | |
#(with-out-str pprint %) more)) | |
`(do ~@more))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment