lua if is in table code example
Example 1: lua tables
local Table = {
["TABLE_info"] = "TABLE_response"
}
for i, v in pairs(Table) do
print(v)
end
Example 2: how to access an index of a table lua
--How to access something in a table by its index in lua:
local mytable = {"Hi", 6,"Bye"}
--To access it:
mytable[1]
--or
mytable[2]
--or
mytable[3]