I have a table that I want to print all its values.
Example:
local table_2 = {
["tabela1"] = "360Mhz", "demo", "teste",
["tabela2"] = "360Mhz", "demo", "teste"
}
for k,v in pairs(table_2) do
print(k,v)
end
How can I print the 4...
asked by
20.08.2015 / 12:16