nested table lua for each code example
Example 1: Lua Nested tables
someTable[#someTable + 1] = {"newValuea", "newValueb"};
Example 2: Lua Nested tables
t[2] = {"stuff", "more stuff", "even more stuff"}
someTable[#someTable + 1] = {"newValuea", "newValueb"};
t[2] = {"stuff", "more stuff", "even more stuff"}