From: Eric Amick Date: Sat, 18 Jun 2005 03:47:32 +0000 (+0000) Subject: [perl #36328] Until Statement Undocumented X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5ec6d87f97023d8f5abd4f645f0f43d4242525f6;p=p5sagit%2Fp5-mst-13.2.git [perl #36328] Until Statement Undocumented From: Eric Amick (via RT) Message-ID: p4raw-id: //depot/perl@24902 --- diff --git a/pod/perlsyn.pod b/pod/perlsyn.pod index 3d45d55..7b2fc5f 100644 --- a/pod/perlsyn.pod +++ b/pod/perlsyn.pod @@ -199,6 +199,8 @@ The following compound statements may be used to control flow: if (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK LABEL while (EXPR) BLOCK LABEL while (EXPR) BLOCK continue BLOCK + LABEL until (EXPR) BLOCK + LABEL until (EXPR) BLOCK continue BLOCK LABEL for (EXPR; EXPR; EXPR) BLOCK LABEL foreach VAR (LIST) BLOCK LABEL foreach VAR (LIST) BLOCK continue BLOCK