3
Well, what I want is the following: take the name of an array within another array, just the name. EX:
local a =
{
["oi"] = {sim=1, nao=2},
["tchau"] = {sim=2, nao=1}
}
local falas = {}
table.insert(falas, a)
-- Add the values "hi" and "bye" to the table talks. That’s the intention, but I don’t know how you do it.
Have you tried using a matrix?
– ptkato