Re: Colon (:) in comments?

2010-06-14 Thread j-g-faustus
OK. Thanks for the help to both of you. Regards, jf On 13 Jun, 21:27, Meikel Brandmeyer wrote: > Hi, > > Am 13.06.2010 um 19:50 schrieb Heinz N. Gies: > > > comment just is a function that says 'don't evaluate the stuff in here, it > > still needs to be correct clojure code you can either use:

Re: Colon (:) in comments?

2010-06-13 Thread Thomas
It is also possible to use the clj-todo module for annotating your code with todo items. http://github.com/tgk/clj-todo http://clojars.org/clj-todo Thomas On Jun 13, 4:13 pm, j-g-faustus wrote: > Hi, > > I get an exception whenever I put a colon in a multiline comment: > > (comment >   TODO: x

Re: Colon (:) in comments?

2010-06-13 Thread Adrian Cuthbertson
You can also use a multiline string in a comment... (comment " To do: x y z More to do: a b c ") -Rgds, Adrian. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from ne

Re: Colon (:) in comments?

2010-06-13 Thread Meikel Brandmeyer
Hi, Am 13.06.2010 um 19:50 schrieb Heinz N. Gies: > comment just is a function that says 'don't evaluate the stuff in here, it > still needs to be correct clojure code you can either use: > > ; TODO: x y z > or > #_(Todo: x y z) Note that after #_ it must also be valid code. Sincerely Meike

Re: Colon (:) in comments?

2010-06-13 Thread Heinz N. Gies
comment just is a function that says 'don't evaluate the stuff in here, it still needs to be correct clojure code you can either use: ; TODO: x y z or #_(Todo: x y z) On Jun 13, 2010, at 16:13 , j-g-faustus wrote: > Hi, > > I get an exception whenever I put a colon in a multiline comment: >

Colon (:) in comments?

2010-06-13 Thread j-g-faustus
Hi, I get an exception whenever I put a colon in a multiline comment: (comment TODO: x y z ) => # Is this a Clojure bug? Or related to Enclojure on NetBeans? Or some sort of hidden feature in comments? Regards jf -- You received this message because you are subscribed to the Google Groups