Hey everyone. Let’s say I wanted to make a random password generator using Lua.
If I had a set of characters I wanted to use in the passwords,
local char = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "-", "_", "=", "+", "<", ">", "?",}
But I wanted to have both lower case characters and upper case characters, would I have to have the same character twice but for both lower and upper case?
local char = {"a", "A"}