GIMDDALC control statements may contain comments. Comments start
with /* and end with */. The first */ encountered
after the initial /* will end the comment. A comment can
appear anywhere within a statement. A comment after the ending period
must start on the same line as the period, and you cannot start any
additional comments after that final comment. For example, you can
code a comment like this: DD(SMPTLIB) SPACE(5,5) DIR(20). /* Comment after period continued
on subsequent lines is OK. */
However,
you cannot code a comment like this: DD(SMPTLIB) SPACE(5,5) DIR(20). /* Comment after period OK, */
/* but starting another comment
causes a syntax error. */
This
causes a syntax error at the start of the second comment after the
period.