2022-05-15 21:00:16 +00:00
|
|
|
# show case of 'continue' and 'break' keyword in their natural environment
|
2022-05-15 20:40:20 +00:00
|
|
|
set i to 0
|
|
|
|
while 1 do
|
|
|
|
if i > 10 then
|
|
|
|
break
|
|
|
|
end
|
2022-05-15 21:00:16 +00:00
|
|
|
if i = 5 then
|
|
|
|
set i to i+1
|
|
|
|
continue
|
|
|
|
end
|
|
|
|
print_number(i)
|
2022-05-15 20:40:20 +00:00
|
|
|
set i to i+1
|
|
|
|
end
|
2022-05-15 21:00:16 +00:00
|
|
|
print_number(i)
|