NAME
PRINT, LPRINT Statements
SYNOPSIS
PRINT [#filenumber%,] [expressionlist] [{; | ,}]
LPRINT [expressionlist] [{; | ,}]
o filenumber% The number of an open file. If you don't specify a
file number, PRINT writes to the screen.
o expressionlist A list of one or more numeric or string expressions
to print.
o {; | ,} Determines where the next output begins:
; means print immediately after the last value.
, means print at the start of the next print zone.
Print zones are 14 characters wide.
DESCRIPTION
PRINT writes data to the screen or to a file.
LPRINT prints data on the printer LPT1.
Example:
OPEN "TEST.DAT" FOR OUTPUT AS #1
PRINT #1, USING "##.### "; 12.12345
CLOSE
OPEN "TEST.DAT" FOR INPUT AS #1
INPUT #1, a$
PRINT a$
LPRINT "This is a line"; 1
LPRINT "This is a line",
LPRINT 2
SEE ALSO
PRINT USING LPRINT USING WIDTH WRITE