WRITE
IWRITE [data,
...
]
Statement
I
Writes data
on
the display.
WRITE prints the values of the data items you type. If
data is omitted,
BASIC prints a blank line. The
data may
be
numeric and/or string.
They must
be
separated
by
commas.
When the
data are printed, each data item
is
separated from the last
by a comma. Strings are delimited
by
quotation marks. After printing
the last item
on
the list, BASIC inserts a carriage return.
Example
10
D=85:B=76:
l
•
J
$="GOOD
BYE"
20
WRITE
Dt
Bt
V$
RUN
85
t
76
t "GOOD
BYE"
ReadY
2-179