RosettaCodeData/Task/Character-codes/True-BASIC/character-codes.basic

4 lines
54 B
Plaintext

PRINT "a - > "; ord("a")
PRINT "98 -> "; chr$(98)
END