What is the ASCII table?
i think it has something to do with keys. If you know can you please send a link?
Computers work with 1s and 0s. They have no real way to think in "words" or even "characters" such as the letter "a" for example.
Some smart guys thought it would be a good idea to give certain 0-1 sequences a character. For example, the bit sequence (8 bits, so one byte) of 01000000 is 64 in decimal which represents the "@" character following the ASCII definition.
An ASCII table is basically all decimal numbers converted to their respective characters. You can find it here:
http://www.asciitable.com
Note: lua's string.char
takes a decimal number and it's output is the ascii character. Thus, string.char(64) returns @
. Also, string.byte("@")
returns 64 :)