summaryrefslogtreecommitdiff
path: root/pod/perlsyn.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-07 10:08:38 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-07 10:08:38 +0000
commitb303ae7823bb20601f644b1014ef1fdda7ec92a5 (patch)
tree035e8d061b7713e0c80cbee6f7616cfe04a54296 /pod/perlsyn.pod
parent445a12f622bad7d38f7d9dd52674ccc07f19205c (diff)
downloadperl-b303ae7823bb20601f644b1014ef1fdda7ec92a5.tar.gz
mention C<foreach VAR (LIST) BLOCK continue BLOCK> syntax
(from François Désarménien <desar@club-internet.fr>) p4raw-id: //depot/perl@3643
Diffstat (limited to 'pod/perlsyn.pod')
-rw-r--r--pod/perlsyn.pod1
1 files changed, 1 insertions, 0 deletions
diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod
index ee668e1187..d08a5f946f 100644
--- a/pod/perlsyn.pod
+++ b/pod/perlsyn.pod
@@ -134,6 +134,7 @@ The following compound statements may be used to control flow:
LABEL while (EXPR) BLOCK continue BLOCK
LABEL for (EXPR; EXPR; EXPR) BLOCK
LABEL foreach VAR (LIST) BLOCK
+ LABEL foreach VAR (LIST) BLOCK continue BLOCK
LABEL BLOCK continue BLOCK
Note that, unlike C and Pascal, these are defined in terms of BLOCKs,