Comments
Documentation Symbols
Comments are notes to the modeler inside blocks of logic. ProModel ignores them, but Comments can be particularly useful to explain logic when more than one person is using a model.
Syntax
Two forward slashes signal the start of a one-line comment. ProModel ignores any subsequent characters on that line.
//
A slash followed by an asterisk signals the start of a multi-line comment.
/***...***/
ProModel ignores all characters after the following characters...
/***
...until an asterisk followed by a slash.
***/
Use this type of comment for long explanations and to prevent ProModel from executing long portions of logic during debugging. Comments using // may be nested inside multi-line comments.
Examples
Observe as the use of the correct characters turns executable code into comments.