!
73
Table
Big character commands
Function
nrint
r-
mint
r-
Cancel enlarged print
Control code
(ESC) “h” CHR$(l) (ESC) “h” CHR$(2) ( ESC > “h,, CHR$.31
( ESC > “h,, CHR$(4J
(ESC > “h” CHR$(5)
(ESC) “h” CHR$(G)
I
I( ESC > “h” CHR$(O)
Try this program to see the big characters.
10 ’ Demo of BIG characters
20 FOR I=1 TO 6
30 LPRINT "THIS IS ";
40 LPRINT CHR$(27);"h";CHR$(I);
50 LPRINT "BIG";
60 LPRINT CHR$(27);"h";CHR$(O);
70 LPRINT " CHARACTER." : LPRINT
80 IF I=2 THEN LPRINT
90 NEXT I
100 END