diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-07 10:08:38 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-07 10:08:38 +0000 |
commit | b303ae7823bb20601f644b1014ef1fdda7ec92a5 (patch) | |
tree | 035e8d061b7713e0c80cbee6f7616cfe04a54296 /pod/perlsyn.pod | |
parent | 445a12f622bad7d38f7d9dd52674ccc07f19205c (diff) | |
download | perl-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.pod | 1 |
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, |