Specifications

295
CR/LFcontrol
CR/LFcontrol determines where the cursor is to be positioned after the PRINT
statement executes.
If
CR/LFcontrol is a comma (,), the cursor moves to the column position of a
least multiple of 8 plus one following the last character output.
If
CR/LFcontrol is a semicolon (;), the cursor moves to the column position
immediately following the last character output.
If neither a comma (,) nor semicolon (;) is specified to
CR/LFcontrol, the cur-
sor moves to the first column on the next screen line.
In any of the above cases, the screen automatically scrolls up so that the cursor
always positions in view on the LCD screen.
To extend one program line to more than 512 characters in a single
PRINT state-
ment, you should use an underline (_) preceding a CR code, not a comma (,) pre-
ceding a CR code.
Statement example:
PRINT 123,
Output:
Statement example:
PRINT 123;
Output:
Statement example:
PRINT 123
Output:
123 _
123_
123
_
( is a space.)