Human: Please fill in a Lua table like this
{
[1] = "_",
[2] = "-",
[3] = "A",
[4] = "B"}
First do _ then - then all upper case letters, then lower case, then numbers
ChatGPT:
Sure, here's the Lua table filled according to your specifications:
luamyTable = {
[1] = "_",
[2] = "-",
[3] = "A",
[4] = "B",
[5] = "C",
[6] = "D",
[7] = "E",
[8] = "F",
[9] = "G",
[10] = "H",
[11] = "I",
[12] = "J",
[13] = "K",
[14] = "L",
[15] = "M",
[16] = "N",
[17] = "O",
[18] = "P",
[19] = "Q",
[20] = "R",
[21] = "S",
[22] = "T",
[23] = "U",
[24] = "V",
[25] = "W",
[26] = "X",
[27] = "Y",
[28] = "Z",
[29] = "a",
[30] = "b",
[31] = "c",
[32] = "d",
[33] = "e",
[34] = "f",
[35] = "g",
[36] = "h",
[37] = "i",
[38] = "j",
[39] = "k",
[40] = "l",
[41] = "m",
[42] = "n",
[43] = "o",
[44] = "p",
[45] = "q",
[46] = "r",
[47] = "s",
[48] = "t",
[49] = "u",
[50] = "v",
[51] = "w",
[52] = "x",
[53] = "y",
[54] = "z",
[55] = "0",
[56] = "1",
[57] = "2",
[58] = "3",
[59] = "4",
[60] = "5",
[61] = "6",
[62] = "7",
[63] = "8",
[64] = "9"
}
Add a comment