Well, what I want is this: get the name of an array inside another array, just the name. EX:
local a =
{
["oi"] = {sim=1, nao=2},
["tchau"] = {sim=2, nao=1}
}
local falas = {}
table.insert(falas, a)
- I would add the "hi" and "bye" values to the table talks. This is the intention, but I do not know how.