char (65)
» 'A'
65 is the ASCII equivalent for "A."
char ('a')
» 'a'
No coercion is necessary; value is already of the right datatype.
for i=33 to 255 {msg (char (i))}
» true
Cycles through all ASCII characters from 33 to 255 in the Main Window message area and returns true.
char ("A")
» 'A'
A one-character string is coerced to a character.