Comments

Comments are text added to the model for purposes of documentation. They are ignored by the simulator that implements the model.

Single line comments start with // and end at the end of the line.

// this is a single line comment

Block comments begin with /* and end with */.

/*
 * This is a block comment
 */

Block comments may not be nested.