1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
.TH GOLF 2gg $VERSION $DATE Development Tools
.SH NAME
continue-loop \- (program-flow)
.SH PURPOSE
Continue to the top of a loop.
.SH SYNTAX
.RS 4
.EX
continue-loop
.EE
.RE
.SH DESCRIPTION
continue-loop will continue execution at the top of the loop at \fBstart-loop\fP, \fBrun-query\fP, or \fBread-line\fP statements.
.SH EXAMPLES
Skip the processing if it's the loop #300:
.RS 4
.EX
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
.EE
.RE
.SH SEE ALSO
Program flow
\fBbreak-loop\fP
\fBcall-handler\fP
\fBcode-blocks\fP
\fBcontinue-loop\fP
\fBdo-once\fP
\fBexit-handler\fP
\fBif-defined\fP
\fBif-true\fP
\fBquit-process\fP
\fBreturn-handler\fP
\fBstart-loop\fP
See all
\fBdocumentation\fP
|