“Denn ich paarweise lua” Code-Antworten

Lua paarweise

--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

Denn ich paarweise 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

Ähnliche Antworten wie “Denn ich paarweise lua”

Fragen ähnlich wie “Denn ich paarweise lua”

Weitere verwandte Antworten zu “Denn ich paarweise lua” auf Lua

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen