4 lines
83 B
Text
4 lines
83 B
Text
charCode = 97
|
|
char = "a"
|
|
PRINT CHR$(charCode) 'prints a
|
|
PRINT ASC(char) 'prints 97
|