Closed causal-agent closed 12 years ago
Clojure allows commenting out single forms using this syntax:
#_(this is a comment)
This would use the dispatch macro, mentioned in #1.
#_ in Clojure is interesting in that it doesn't expand to (comment (this is a comment)), but it erases the form from the AST completely, as if nothing was read at all.
#_
(comment (this is a comment))
Clojure allows commenting out single forms using this syntax:
This would use the dispatch macro, mentioned in #1.