get stuff from list in lua code example
Example 1: where do lua tables start
tbl = {"yes"}
tbl[1]
-- Arrays/Tables start at 1
Example 2: lua add to table
table[#table + 1] = val
tbl = {"yes"}
tbl[1]
-- Arrays/Tables start at 1
table[#table + 1] = val