Comments - Spicery/Nutmeg GitHub Wiki

Like most programming languages, Nutmeg has two kinds of comments, end of line comments and long comments. End of line comments are introduced with three (or more) hash # marks. e.g.

### This is an end of line comment.
################################### so is this.

Long comments start with two hashes and a parenthesis ##(. The long comment is closed by two hashes and a matching close parenthesis e.g. ##). Unlike languages such as C, long comments nest.

##( 
This is a good way to introduce a long explanatory comment
that covers several lines. You can also use it to briefly 
comment out large sections of code.
##)