LIST

PURPOSE:
To list the source lines from a program to a file or device.
STATEMENT SYNTAX:
LIST {(unit)} {stnoa}{,stnob}
where:
unit = a number designating the device/file that will receive the listing. When unspecified, the FID(0) Device is implied.
stnoa = the number of a statement to be listed or the first of a series of statements to be listed.
stnob The number of the last of a series of statements to be listed.
EXAMPLE:
LIST		Lists all lines from a program
LIST 10		Lists line 10 from a program
LIST 200,299	Lists lines 200 through 299
LIST ,54499	Lists all lines through 54499
LIST 500,	Lists lines 500 to the END.
NOTES:
When any statement, including the statement number, in the list EXCEEDS 79 characters in length, the portion(s) in excess of 79 characters will be listed in the succeeding line(s). The continued portion of the statement will be preceded by the statement number and a colon.

All statement numbers are listed with enough leading zero's so that they contain the same number of digits that the largest statement number in the program requires.

SEE:
MERGE