User`s manual

3-2
--------------------------------------------------
30 X=25
40 PRINT 25 "IS EQUAL TO" X
RUN
25 IS EQUAL TO 25
--------------------------------------------------
70 A=5:B=10:C=3
80 PRINT ABC
RUN
0
--------------------------------------------------
Positive numbers
are printed with a leading blank (instead of a plus sign);
all numbers
are printed with a trailing blank; and no blanks are inserted
before or after
strings
(you can insert them with quotes as in line 20.
In lines 30 and 40 no punctuation is needed; but in lines 70 and 80 zero will
print out because ABC is interpreted as a single variable which has not been
assigned a value yet.
--------------------------------------------------
10 PRINT "ZONE 1","ZONE 2","ZONE 3","ZONE 4","ZONE 1 ETC"
RUN
ZONE 1 ZONE 2 ZONE 3 ZONE 4
ZONE 1 ETC
There are four 16-character print zones per line.
--------------------------------------------------
10 PRINT "ZONE 1"„"ZONE 3"
RUN
ZONE 1 ZONE 3
The cursor moves to the next print zone each time a comma is encountered.
--------------------------------------------------
10 PRINT "PRINT STATEMENT #10 ";
20 PRINT "PRINT STATEMENT #20"
RUN
PRINT STATEMENT #10 PRINT STATEMENT #20
A trailing semi-colon over-rides the cursor-return so that the next PRINT
begins where the last one left off (see line 10).
If no trailing punctuation is used with PRINT, the cursor drops down to the
beginning of the next line.