“Podczas pętli Lua” Kod odpowiedzi

Forever Loop w Lua

while( true )
do
   print("This loop will run forever.")
end
Catking The Cat That Has An Extremely Long Username

Kontynuuj w Lua

-- Lua has no continue statement because it's designed to
-- be lightweight. Use goto instead:

arr = {1, 2, 3, 5, 6, 7, 8}

for key, val in ipairs(arr) do
  if val > 6 then
     goto skip_to_next
  end
  -- perform some calculation
  
  ::skip_to_next::
end
Graceful Gull

Podczas pętli Lua

while i < n do
	print(i^2) -- Same here
	i = i+1 --Stick your own here
end
Vitalik-Hakim

Podczas pętli w Lua

local can_do = true
local countdown = 0.85 --you can choose whatever you want

while can_do do
    --here your code
    wait(countdown)    
dl.guy

Otwórz podczas pętli lua

Open while loops can potentially crash your program so be careful!
Chris P. Bacon

Odpowiedzi podobne do “Podczas pętli Lua”

Pytania podobne do “Podczas pętli Lua”

Więcej pokrewnych odpowiedzi na “Podczas pętli Lua” w Lua

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu