LINES [ HP Pascal/iX Reference Manual ] MPE/iX 5.0 Documentation
HP Pascal/iX Reference Manual
LINES
LINES is an HP Standard Option.
The LINES compiler option specifies the number of lines per page of the
listing.
The command line option -P also specifies this option.
Syntax
$LINES integer$
Parameters
integer Positive integer not less than 20.
Default 59
Location Anywhere.
Example
PROGRAM show_lines (output);
VAR
i : shortint;
BEGIN
writeln('line 5');
writeln('line 6');
.
.
.
writeln('line 58');
$LINES 20$
writeln('line 60');
writeln('line 61');
.
.
.
writeln('line 79');
writeln('line 80');
END.
The listing (simplified) looks like this:
MPE/iX 5.0 Documentation