56
4.2 Usable Characters
4.2.1 Usable Characters
Listed below are characters which can be used for writing programs. Note that a double quote
(") cannot be used inside a character string. Symbols | and ~ inside a character string will
appear as
↓
and
→
on the LCD of the BHT, respectively.
If used outside of a character string, symbols and control codes below have special meaning
described in Subsection 4.2.2.
■
Distinction between Uppercase and Lowercase Letters
The Compiler makes no distinction between the uppercase and lowercase letters, except for
those used in a character string data. All of the statements below, for example, produce the
same effect.
PRINT a
print a
PRINT A
print A
When used in a character string data, uppercase and lowercase letters will be distinguished
from each other. Each of the statements below, for example, produces different display output.
PRINT "abc"
PRINT "ABC"
• Alphabet letters
Including both the uppercase and lowercase letters
(A to Z and a to z).
• Numerals
Including 0 to 9 for decimal notation, and 0 to 9 and
A to F (a to f) for hexadecimal notation.
• Symbols
Including the following:
$ % * + – . / < = > " & ' ( ) : ; [ ] { } # ! ? @ \ |
~
, _
• Control codes
CR, space, and tab
• Katakana
e.g.,
• Kanji (2-byte codes)
(Full-width characters)
e.g.,
• Kanji (2-byte codes)
(Half-width characters)
e.g.,
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...