Created
November 3, 2014 17:12
-
-
Save fernandez14/f8084710795a85b6de31 to your computer and use it in GitHub Desktop.
Syntax test
This file contains 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
(def bit-bucket-writer | |
(proxy [java.io.Writer] [] | |
(write [buf] nil) | |
(close [] nil) | |
(flush [] nil))) | |
(defmacro noprint | |
"Evalua la expresiones dadas con todas las impresiones a *out* silenciadas." | |
[& forms] | |
`(binding [*out* bit-bucket-writer] | |
~@forms)) | |
(noprint | |
(println "Hello, nobody!")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment