what I am after is basically:
Code: Select all
table = {
["key1"] = "string1",
["key2"] = "string2"
}Because all Keys are unique, I could do it simply using:
Code: Select all
table[key] = valueCode: Select all
table = {
["key1"] = "string1",
["key2"] = "string2"
}Code: Select all
table[key] = value