Multi-Line Commands

You can continue almost all Maintain commands onto additional lines. The continued command can begin in any column, and can be continued for any number of lines.

The only exceptions are the TYPE command, which uses a special convention for continuing, and the beginning of the REPEAT command, which cannot be continued.

In the following example, all continued lines are indented for clarity:

MAINTAIN FILES VideoTrk
   AND Movies
 
.
.
.
IF CustInfo.FocIndex GT 1
   THEN COMPUTE CustInfo.FocIndex = CustInfo.FocIndex - 1;
   ELSE COMPUTE CustInfo.FocIndex = CustInfo.FocCount;

WebFOCUS