table with nil index lua code example
Example 1: table in lua
local myTable = {}
Example 2: how to make a table in lua
--You need to use this {} and put them in a varible
local Table = {13,"1hihihi",
-- u can even do tis
{122,222}}
local myTable = {}
--You need to use this {} and put them in a varible
local Table = {13,"1hihihi",
-- u can even do tis
{122,222}}