7 lines
209 B
Text
7 lines
209 B
Text
-- returns Unicode code point (=ASCII code for ASCII characters) for character
|
|
put chartonum("a")
|
|
-- 97
|
|
|
|
-- returns character for Unicode code point (=ASCII code for ASCII characters)
|
|
put numtochar(934)
|
|
-- Φ
|