continue-loop - (program-flow)
Contents
Description
continue-loop will continue execution at the top of the loop at start-loop, run-query, or read-line
statements.
Examples
Skip the processing if it's the loop #300:
define-number cont_loop = 300
start-loop repeat 1000 use i start-with 1
if-true i equal cont_loop
continue-loop
end-if
@Completed <<print-out i>> loops so far
end-loop
Name
continue-loop - (program-flow)
Purpose
Continue to the top of a loop.
See Also
Program flow
break-loopcall-handlercode-blockscontinue-loopdo-onceexit-handlerif-definedif-truequit-processreturn-handlerstart-loop See all documentation
$DATE $VERSION GOLF(2gg)
Syntax
continue-loop
