9951 explained code solutions for 126 technologies


luaHow to add item to table


table.insert(tbl, 'val')ctrl + c
table.insert

will append given value to the given table

tbl

name of the table to add item to

'val'

item to add to table