4 lines
119 B
Text
4 lines
119 B
Text
charCode = 97
|
|
char$ = "a"
|
|
PRINT CHR$(charCode) : REM prints a
|
|
PRINT ASC(char$) : REM prints 97
|