PRINT ☆☆☆

PRINT
Displays the values of numerical expressions or string expressions.
Two or more items can be written punctuated by commas or semicolons.
A comma makes the place proceed to the next zone.
A semicolon does not so.
Example
PRINT "2+3="; 2+3, "2-3="; 2-3
Output

2+3= 5                  2-3=-1 


If TAB(n) is written as an item, The place is made to proceed to the n-th column.
Usually it is punctuated by a semicolon.
Example
PRINT 2; TAB(10); 2^10
Output

 2        1024