Correct me if I'm wrong, the only way to have unbuffered (doesn't output to .js) comments in CoffeeScript is
# This is the only way to mute this single-line comments
The ###
buffers comments for multi-line
### This will be outputted to the .js
For things like copyright notices.
###
But there's no way to have unbuffered multi-line comments?
# This is the only way to mute
# multiple-lines
Thanks.
###
works as well as#
, i could be wrong though, but###
sometimes gives me indentation issues or sOmething... – Psittacosis