“Lua em pares” Respostas de código

Lua em pares

--Table is the table to iterate through
--Index is the current index
--Value is the value at the current index

for index, value in pairs(table) do

end
Dangerous Dog

para eu em pares lua

local table =  {2,3,12, "Hello"} --a simple array
for i, item in pairs(table) do -- for i in pairs loop goes through all the items in an array/table
	print(item)
end
Drab Dingo

Respostas semelhantes a “Lua em pares”

Perguntas semelhantes a “Lua em pares”

Mais respostas relacionadas para “Lua em pares” em Lua

Procure respostas de código populares por idioma

Procurar outros idiomas de código