Chapter 4. Basic Program Elements
55
4.1.2 Program Line Length
A program line is terminated with a CR code by pressing the carriage return key.
The allowable line length is basically 512 characters excluding a CR code placed at the end of
the line.
In either of the following two description ways, however, you can write a program line of up to
8192 characters:
In the samples below, symbol "
↓
" denotes a CR code entered by the carriage return key.
• Extend a program line with an underline (_) and a CR code.
IF (a$ = "," OR a$ = ".") AND b<c _
↓
AND EOF(d) THEN ...
• Extend a program line with a comma (,) and a CR code.
FIELD #1,13 as p$,5 as k$,
↓
10 as t$
↓
Note that the latter description way above (using a comma and CR code) cannot be used for
the
,
PRINT#
, and
USING
statements. Only the former way should apply to
them.
Summary of Contents for BHT-BASIC 100 SERIES
Page 1: ......
Page 161: ...153 Chapter 10 Sleep Function CONTENTS 10 1 Sleep Function 154...
Page 163: ...155 Chapter 11 Resume Function CONTENTS 11 1 Resume Function 156...
Page 173: ...165 Chapter 13 Backlight Function CONTENTS 13 1 Backlight Function 166...
Page 249: ...241 Example CLOSE IF kyIn Y THEN KILL Master Dat END IF Reference Statements CLFILE...