OSDN Git Service

92ff3b4b2e506fdbb207c312d8e24106a0cfae27
[eos/base.git] / util / src / TclTk / tcl8.6.12 / doc / continue.n
1 '\"
2 '\" Copyright (c) 1993-1994 The Regents of the University of California.
3 '\" Copyright (c) 1994-1996 Sun Microsystems, Inc.
4 '\"
5 '\" See the file "license.terms" for information on usage and redistribution
6 '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
7 '\"
8 .TH continue n "" Tcl "Tcl Built-In Commands"
9 .so man.macros
10 .BS
11 '\" Note:  do not modify the .SH NAME line immediately below!
12 .SH NAME
13 continue \- Skip to the next iteration of a loop
14 .SH SYNOPSIS
15 \fBcontinue\fR
16 .BE
17 .SH DESCRIPTION
18 .PP
19 This command is typically invoked inside the body of a looping command
20 such as \fBfor\fR or \fBforeach\fR or \fBwhile\fR.
21 It returns a 4 (\fBTCL_CONTINUE\fR) result code, which causes a continue
22 exception to occur.
23 The exception causes the current script to be aborted
24 out to the innermost containing loop command, which then
25 continues with the next iteration of the loop.
26 Catch exceptions are also handled in a few other situations, such
27 as the \fBcatch\fR command and the outermost scripts of procedure
28 bodies.
29 .SH EXAMPLE
30 .PP
31 Print a line for each of the integers from 0 to 10 \fIexcept\fR 5:
32 .PP
33 .CS
34 for {set x 0} {$x<10} {incr x} {
35     if {$x == 5} {
36         \fBcontinue\fR
37     }
38     puts "x is $x"
39 }
40 .CE
41 .SH "SEE ALSO"
42 break(n), for(n), foreach(n), return(n), while(n)
43 .SH KEYWORDS
44 continue, iteration, loop
45 '\" Local Variables:
46 '\" mode: nroff
47 '\" End: