WRITE#
I
WRITE#
buffer, data,
...
Statement I
Writes data
to
a sequential-access file.
Buffer must
be
the number used to OPEN the file.
The data you enter may
be
numeric or string expressions.
WRITE# inserts commas between the data items as they are written
to disk.
It
delimits strings with quotation marks. Therefore, it is not
necessary to put explicit delimiters between the data.
The items
on
data must be separated by commas.
WRITE# inserts a carriage return after writing the last data item
to
disk.
For example, if
A$="MICROCOMPUTER"
and
B$="NEWS"
the statement
WRITE#l
t A$
tB$
writes the following image to disk:
"M I
CROCOM
PUTER"
t"
NEWS"
2-180