The Continue Statement
while true do
continue -- Make an infinite loop
print() -- Never runs
endrepeat
continue -- Compiler catches this!
local a = 1
until a > 0Last updated
while true do
continue -- Make an infinite loop
print() -- Never runs
endrepeat
continue -- Compiler catches this!
local a = 1
until a > 0Last updated