How do I comment multiple lines in Clojure?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Actually, there is a way!
Just wrap your comments in (comment ..) :) Have fun! |
|||||||||||||||||||
|
|
Clojure supports a Both the above require that the thing that you're commenting out is otherwise a syntactically correct S-expression. Some Lisp dialects have a multi-line comment that can contain arbitrary text, but I don't see one for Clojure. |
|||||||
|
|
See this link: http://en.wikibooks.org/wiki/Clojure_Programming/Tutorials_and_Tips You can create multiline comments with the syntax
|
|||||
|