coffeescript – 如何评论? “/ *这个* /”不起作用

你可以用什么方式评论Coffeescript? 该文档说,你可以使用3个哈希符号来启动和closures评论块

### comments go here ### 

我发现我有时可以使用以下两种格式

 `// backticks allow for straight-javascript, //but the closing backtick can't be on a comment line (I think?) ` 

有没有简单的方法来在coffeescript中插入简短的评论?

编辑:不要使用这种风格

由于这个观点很多,我想强调一下

 /* comment goes here */ 

/*在自己的行上时会产生MATH错误。
正如Trevor在对这个问题的评论中指出的那样,这是一个正则expression式 ,而不是一个评论!

使用一个#号

 # like this 

一个angular色看起来很less;)

也:

 ### This block comment (useful for ©-Copyright info) also gets passed on to the browsers HTML /* like this! */ ### 

主要的评论方式是sh / Perl / Ruby / … style # comments:

 # This comment goes to the end of the line # and it won't appear in the "compiled" # JavaScript version. 

如果要在JavaScript版本中显示评论 ,请使用块样式###注释 :

有时候,您希望将块注释传递给生成的JavaScript。 例如,当您需要在文件的顶部embedded许可标题时。 块注释,反映heredocs的语法,保存在生成​​的代码。

所以,如果你开始

 ### PancakeParser is Public Domain ### 

那么你会在生成的JavaScript中得到这个JavaScript注释:

 /* PancakeParser is Public Domain */ 

提防 ###! 如果您使用###分隔代码段(与我一样),当代码停止工作时,会非常令人惊讶。