Previous Topic: UsageNext Topic: More Information


Examples

Sample SET OPTIONS Statement

In this example, the compiler has been instructed to list DISPLAY/PUNCH output in syntax format; each line of input is to be listed; and subsequent input must be specified in the range of columns 2 through 65.

set options for session
    display as syntax
    list
    input columns are 2 thru 65.

Setting the End-Of-File Indicator

The following example establishes // as the end-of-file indicator for the current compiler session:

set options for session
     eof is '//'.