Indicates the beginning of a nonexecuting inline comment in a program file.
Parameters
- && [ Comments]
-
Specifies inline comments that follow.
Remarks
Example
The following example includes the inline comments "20 years of monthly payments" indicated by the && command:
| Copy Code |
---|
STORE (20*12) TO gnPayments && 20 years of monthly payments
NOTE 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