In what ways can you comment in Coffeescript? The docs say you can use 3 hash symbols to start and close a comment block
###
comments
go
here
###
I've found that I can sometimes use the following two formats
`// backticks allow for straight-javascript,
//but the closing backtick can't be on a comment line (I think?)
`
Are there any simpler ways to insert short comments in coffeescript?
Edit: do NOT use this style
Since this is getting a lot of views, I want to emphasize that this
/* comment goes here */
produces a MATH error when the /* is on its own line. As Trevor pointed out in a comment on the question, this is a regex, NOT a comment.
/*...*/comment "works," it's because the CoffeeScript compiler is interpreting it as a regex. Definitely not recommended! – Trevor Burnham Oct 16 '11 at 2:59