Comments
Comments can be used to explain a model in more detail and will be ignored by the parser.
A single-line comment starts with two forward slashes (//
) and ends with the
end of the line.
A multi-line comment starts with /*
and ends with */
.
// a single line comment
/*
* a multi line comment
*/