lua add to a table code example
Example 1: lua add table to value
table.insert(table, position:num, value:any)
Example 2: where do lua tables start
tbl = {"yes"}
tbl[1]
-- Arrays/Tables start at 1
table.insert(table, position:num, value:any)
tbl = {"yes"}
tbl[1]
-- Arrays/Tables start at 1