apricot-lang / apricot

Clojure-like Lisp on Rubinius
94 stars 7 forks source link

Comment Form Syntax #10

Closed causal-agent closed 12 years ago

causal-agent commented 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.

solson commented 12 years ago

#_ 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.