local saveInfo={
[1]={},
[2]={},
[3]={}
}
for i=1,3 do
for j=1,5 do
table.insert(saveInfo[i],j,(10*j))
end
end
that works but only if i define the indexes as tables.
like this
[1]={},
[2]={},
[3]={}
I want the code to create tables within that table to store temp data basically. And if there is a way to do it without having to define all the tables that would come in handy.
Thanks in advance











