2020-12-24 06:41:00 +00:00
|
|
|
// just testing continues and breaks
|
|
|
|
|
|
|
|
for (var x = 0; x < 700; x++) do
|
|
|
|
for (var i = 0; true; i++) do
|
|
|
|
var str = i .. "." .. x
|
|
|
|
if (i == 998) then
|
|
|
|
print(i .. " reached")
|
2020-12-24 06:47:21 +00:00
|
|
|
break // exits the loop
|
2020-12-24 06:41:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
print("for cont- " .. str)
|
2020-12-24 06:47:21 +00:00
|
|
|
continue // this really doesn't have much effect since the loop is restarted anyways, but this is just to prove it works as expected
|
2020-12-24 06:41:00 +00:00
|
|
|
end
|
|
|
|
|
2020-12-24 06:47:21 +00:00
|
|
|
// same example as the for loop but done manually using a while loop
|
2020-12-24 06:41:00 +00:00
|
|
|
var i = 0
|
|
|
|
while true do
|
|
|
|
var str = i .. "." .. x
|
2020-12-24 06:47:21 +00:00
|
|
|
if (i++ == 998) then
|
2020-12-24 06:41:00 +00:00
|
|
|
print("done")
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
print("while cont- " .. str)
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
end
|