Variables
Const A
A: number = "A".charCodeAt(0)
Const E
E: number = A + 4
Const F
F: number = "F".charCodeAt(0)
Const Z
Z: number = "Z".charCodeAt(0)
Const a
a: number = "a".charCodeAt(0)
Const carriageReturn
carriageReturn: number = "\r".charCodeAt(0)
Const decimalPoint
decimalPoint: number = ".".charCodeAt(0)
Const e
e: number = a + 4
Const f
f: number = "f".charCodeAt(0)
Const maxAscii
maxAscii: 127 = 127
Const minus
minus: number = "-".charCodeAt(0)
Const newline
newline: number = "\n".charCodeAt(0)
Const nine
nine: number = "9".charCodeAt(0)
Const plus
plus: number = "+".charCodeAt(0)
Const space
space: number = " ".charCodeAt(0)
Const tab
tab: number = "\t".charCodeAt(0)
Const underscore
underscore: number = "_".charCodeAt(0)
Const z
z: number = "z".charCodeAt(0)
Const zero
zero: number = "0".charCodeAt(0)
Common ASCII character codes.