lua how to add something to a table
snippet in lua
lua how to add something to a table
user5983
foo = {}
table.insert(foo, "bar")
table.insert(foo, "baz")
lua how to add something to a table
user9468
foo = {}
table.insert(foo, "bar")
table.insert(foo, "baz")