1## Comments
2
3In CoffeeScript, comments are denoted by the `#` character to the end of a line, or from `###` to the next appearance of `###`. Comments are ignored by the compiler, though the compiler makes its best effort at reinserting your comments into the output JavaScript after compilation.
4
5```
6codeFor('comment')
7```
8
9Inline `###` comments make [type annotations](#type-annotations) possible.