“Луа как сделать петлю” Ответ

Луа для петли

-- For K,V in table
for k,v in pairs(tbl) do
 print(k)
 print(v)
end
-- For i=0, num
for i=0, num do
 print(i)  
end
Orion

Луа как сделать петлю

-- for in/for loops
for key, value in pairs(table) do
	-- If value is a table then you can do another iteration tho, for in for in isn't recommended.
end

for key, value in next, table do
	-- Same as above.
end

for variable = 0, 1, 1 do
	-- The variable is automatically set to the first value you input after "=".
	-- The variable is then incremented by the third value you input after "="
    -- until it reaches the second value you input after "=".

	variable = variable + 1 -- The above only works if you increment it,
	-- else it infinitely loops through the block.
end

while true do
	-- Infinite loop
end
Handsome Herring

Ответы похожие на “Луа как сделать петлю”

Вопросы похожие на “Луа как сделать петлю”

Больше похожих ответов на “Луа как сделать петлю” по Lua

Смотреть популярные ответы по языку

Смотреть другие языки программирования