Check to see if True Basic can find the ASCII number of a string with more than one character using the "ord" function:
LET m = ord("ABC") !improper ord string
PRINT m
END
This program won't run. It returns an error message "improper ord string", meaning the string can be only one character long.