Comments

Forge models support 3 different syntactic styles of comment:

  • lines beginning with -- are ignored;
  • lines beginning with // are ignored; and
  • all text between /* and */ are ignored.

No nesting comments

/* ... */ comments may not be nested. E.g.,

/*
/*
*/
*/

would be a syntax error, because the first instance of */ terminates all preceding instances of `/*.