User`s manual
10-3
LLIST
Works like LIST, but outputs to the Printer
LLIST
List current program to printer.
LLIST 100-
Will list line 100 to the end of the program to the line
printer.
LLIST 100-200
Will list line 100 through 200 to the line printer.
LLIST.
Lists current line to the line printer.
LLIST-100
Lists all lines up to and including line 100 to the line
printer.
See Chapter 2, LIST.
LPRINT
This command or statement allows you to output information to the Line
Printer. For example, LPRINT A will list the value of A to the line printer.
LPRINT can also be used with all the options available with
PRINT except
PRINT @.
Examples:
LPRINT
variable or expression
lists the variable or expression to the line
printer.
LPRINT USING prints the information to the line printer using the form at
specified.
LPRINT TAB will move the line printer carriage position to the right as
indicated by the TAB expression.
The maximum TAB value for an LPRINT statement is 63. But there's a
simple way to tab past column 63 on a line printer using the STRING$
function.
Example:
10 LPRINT TAB(5)"NAME" TAB(30)"ADDRESS" STRING$(63,32)"BALANCE"
will print NAME at column 5, ADDRESS at column 30, and BALANCE at
column 100.
See Chapter 3,
PRINT.










