added comments to break.cosmo

This commit is contained in:
CPunch 2020-12-24 00:47:21 -06:00
parent a408353c25
commit 42eec149f6

View File

@ -5,17 +5,18 @@ for (var x = 0; x < 700; x++) do
var str = i .. "." .. x var str = i .. "." .. x
if (i == 998) then if (i == 998) then
print(i .. " reached") print(i .. " reached")
break break // exits the loop
end end
print("for cont- " .. str) print("for cont- " .. str)
continue continue // this really doesn't have much effect since the loop is restarted anyways, but this is just to prove it works as expected
end end
// same example as the for loop but done manually using a while loop
var i = 0 var i = 0
while true do while true do
var str = i .. "." .. x var str = i .. "." .. x
if (i++ == 1034) then if (i++ == 998) then
print("done") print("done")
break break
end end