{
Title = {
...
}
}
I want to add a new key to it, like this:
{
Title = {
...
},
NewKey = {
...
}
}
How would I achieve this?
Posted 14 April 2015 - 02:45 PM
{
Title = {
...
}
}
{
Title = {
...
},
NewKey = {
...
}
}
Posted 14 April 2015 - 02:46 PM
Posted 14 April 2015 - 02:47 PM
local tbl = {Title = {} }
tbl["NewKey"] = {}
--#Or
tbl.NewKey = {} --#Can only do this for constant names.
Edited by Dragon53535, 14 April 2015 - 02:49 PM.
Posted 14 April 2015 - 02:53 PM
Dragon53535, on 14 April 2015 - 02:47 PM, said:
local tbl = {Title = {} }
tbl["NewKey"] = {}
--#Or
tbl.NewKey = {} --#Can only do this for constant names.
0 members, 2 guests, 0 anonymous users