* Command

Indicates the beginning of a nonexecuting comment line in a program file.

* [Comments]

Parameters

  • Comments
    Specifies the comment in the comment line. For example:

    *   This is a comment
    

Remarks

Place a semicolon (;) at the end of each comment line that continues to a following line.

Example

* Initialize the page number;
   variable.
STORE 1 to gnPageNum
* Set up the loop
DO WHILE gnPageNum <= 25  && loop 25 times
   gnPageNum = gnPageNum + 1
ENDDO  && DO WHILE gnPageNum <= 25

See Also

&& Command | MODIFY COMMAND Command | MODIFY FILE Command | NOTE Command