Purpose: PRINT enables a line or range of lines to be displayed.
P/RINT/ [\line1 [:line3]\; NEXT [n]]
|
with no options displays the entire current set of lines. |
line1 |
is the address of a single line to be displayed or the first address of a range of lines to be displayed. |
line2 |
is the last line when a line range is to be displayed. |
NEXT n |
causes ACCENT R to display the following n lines from the current position in the file. The default value of n is 10, but it remains set to the last specified value. |
00010 PUB_CODE,CHAR,4
00020 PUB_NAME,CHAR,40
00030 CITY,CHAR,20
00040 STATE,CHAR,2
—
NOTES: PRINT NEXT [n] can be abbreviated to PN [n].
Up to ten individual addresses or line ranges can be specified by separating them with commas.