This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update IO-Compress to CPAN version 2.040
[perl5.git] / pod / perlsyn.pod
... / ...
CommitLineData
1=head1 NAME
2X<syntax>
3
4perlsyn - Perl syntax
5
6=head1 DESCRIPTION
7
8A Perl program consists of a sequence of declarations and statements
9which run from the top to the bottom. Loops, subroutines and other
10control structures allow you to jump around within the code.
11
12Perl is a B<free-form> language, you can format and indent it however
13you like. Whitespace mostly serves to separate tokens, unlike
14languages like Python where it is an important part of the syntax.
15
16Many of Perl's syntactic elements are B<optional>. Rather than
17requiring you to put parentheses around every function call and
18declare every variable, you can often leave such explicit elements off
19and Perl will figure out what you meant. This is known as B<Do What I
20Mean>, abbreviated B<DWIM>. It allows programmers to be B<lazy> and to
21code in a style with which they are comfortable.
22
23Perl B<borrows syntax> and concepts from many languages: awk, sed, C,
24Bourne Shell, Smalltalk, Lisp and even English. Other
25languages have borrowed syntax from Perl, particularly its regular
26expression extensions. So if you have programmed in another language
27you will see familiar pieces in Perl. They often work the same, but
28see L<perltrap> for information about how they differ.
29
30=head2 Declarations
31X<declaration> X<undef> X<undefined> X<uninitialized>
32
33The only things you need to declare in Perl are report formats and
34subroutines (and sometimes not even subroutines). A variable holds
35the undefined value (C<undef>) until it has been assigned a defined
36value, which is anything other than C<undef>. When used as a number,
37C<undef> is treated as C<0>; when used as a string, it is treated as
38the empty string, C<"">; and when used as a reference that isn't being
39assigned to, it is treated as an error. If you enable warnings,
40you'll be notified of an uninitialized value whenever you treat
41C<undef> as a string or a number. Well, usually. Boolean contexts,
42such as:
43
44 my $a;
45 if ($a) {}
46
47are exempt from warnings (because they care about truth rather than
48definedness). Operators such as C<++>, C<-->, C<+=>,
49C<-=>, and C<.=>, that operate on undefined left values such as:
50
51 my $a;
52 $a++;
53
54are also always exempt from such warnings.
55
56A declaration can be put anywhere a statement can, but has no effect on
57the execution of the primary sequence of statements--declarations all
58take effect at compile time. Typically all the declarations are put at
59the beginning or the end of the script. However, if you're using
60lexically-scoped private variables created with C<my()>, you'll
61have to make sure
62your format or subroutine definition is within the same block scope
63as the my if you expect to be able to access those private variables.
64
65Declaring a subroutine allows a subroutine name to be used as if it were a
66list operator from that point forward in the program. You can declare a
67subroutine without defining it by saying C<sub name>, thus:
68X<subroutine, declaration>
69
70 sub myname;
71 $me = myname $0 or die "can't get myname";
72
73Note that myname() functions as a list operator, not as a unary operator;
74so be careful to use C<or> instead of C<||> in this case. However, if
75you were to declare the subroutine as C<sub myname ($)>, then
76C<myname> would function as a unary operator, so either C<or> or
77C<||> would work.
78
79Subroutines declarations can also be loaded up with the C<require> statement
80or both loaded and imported into your namespace with a C<use> statement.
81See L<perlmod> for details on this.
82
83A statement sequence may contain declarations of lexically-scoped
84variables, but apart from declaring a variable name, the declaration acts
85like an ordinary statement, and is elaborated within the sequence of
86statements as if it were an ordinary statement. That means it actually
87has both compile-time and run-time effects.
88
89=head2 Comments
90X<comment> X<#>
91
92Text from a C<"#"> character until the end of the line is a comment,
93and is ignored. Exceptions include C<"#"> inside a string or regular
94expression.
95
96=head2 Simple Statements
97X<statement> X<semicolon> X<expression> X<;>
98
99The only kind of simple statement is an expression evaluated for its
100side effects. Every simple statement must be terminated with a
101semicolon, unless it is the final statement in a block, in which case
102the semicolon is optional. (A semicolon is still encouraged if the
103block takes up more than one line, because you may eventually add
104another line.) Note that there are some operators like C<eval {}> and
105C<do {}> that look like compound statements, but aren't (they're just
106TERMs in an expression), and thus need an explicit termination if used
107as the last item in a statement.
108
109=head2 Truth and Falsehood
110X<truth> X<falsehood> X<true> X<false> X<!> X<not> X<negation> X<0>
111
112The number 0, the strings C<'0'> and C<''>, the empty list C<()>, and
113C<undef> are all false in a boolean context. All other values are true.
114Negation of a true value by C<!> or C<not> returns a special false value.
115When evaluated as a string it is treated as C<''>, but as a number, it
116is treated as 0.
117
118=head2 Statement Modifiers
119X<statement modifier> X<modifier> X<if> X<unless> X<while>
120X<until> X<when> X<foreach> X<for>
121
122Any simple statement may optionally be followed by a I<SINGLE> modifier,
123just before the terminating semicolon (or block ending). The possible
124modifiers are:
125
126 if EXPR
127 unless EXPR
128 while EXPR
129 until EXPR
130 when EXPR
131 for LIST
132 foreach LIST
133
134The C<EXPR> following the modifier is referred to as the "condition".
135Its truth or falsehood determines how the modifier will behave.
136
137C<if> executes the statement once I<if> and only if the condition is
138true. C<unless> is the opposite, it executes the statement I<unless>
139the condition is true (i.e., if the condition is false).
140
141 print "Basset hounds got long ears" if length $ear >= 10;
142 go_outside() and play() unless $is_raining;
143
144C<when> executes the statement I<when> C<$_> smart matches C<EXPR>, and
145then either C<break>s out if it's enclosed in a C<given> scope or skips
146to the C<next> element when it lies directly inside a C<for> loop.
147See also L</"Switch statements">.
148
149 given ($something) {
150 $abc = 1 when /^abc/;
151 $just_a = 1 when /^a/;
152 $other = 1;
153 }
154
155 for (@names) {
156 admin($_) when [ qw/Alice Bob/ ];
157 regular($_) when [ qw/Chris David Ellen/ ];
158 }
159
160The C<foreach> modifier is an iterator: it executes the statement once
161for each item in the LIST (with C<$_> aliased to each item in turn).
162
163 print "Hello $_!\n" foreach qw(world Dolly nurse);
164
165C<while> repeats the statement I<while> the condition is true.
166C<until> does the opposite, it repeats the statement I<until> the
167condition is true (or while the condition is false):
168
169 # Both of these count from 0 to 10.
170 print $i++ while $i <= 10;
171 print $j++ until $j > 10;
172
173The C<while> and C<until> modifiers have the usual "C<while> loop"
174semantics (conditional evaluated first), except when applied to a
175C<do>-BLOCK (or to the deprecated C<do>-SUBROUTINE statement), in
176which case the block executes once before the conditional is
177evaluated. This is so that you can write loops like:
178
179 do {
180 $line = <STDIN>;
181 ...
182 } until $line eq ".\n";
183
184See L<perlfunc/do>. Note also that the loop control statements described
185later will I<NOT> work in this construct, because modifiers don't take
186loop labels. Sorry. You can always put another block inside of it
187(for C<next>) or around it (for C<last>) to do that sort of thing.
188For C<next>, just double the braces:
189X<next> X<last> X<redo>
190
191 do {{
192 next if $x == $y;
193 # do something here
194 }} until $x++ > $z;
195
196For C<last>, you have to be more elaborate:
197X<last>
198
199 LOOP: {
200 do {
201 last if $x = $y**2;
202 # do something here
203 } while $x++ <= $z;
204 }
205
206B<NOTE:> The behaviour of a C<my> statement modified with a statement
207modifier conditional or loop construct (e.g. C<my $x if ...>) is
208B<undefined>. The value of the C<my> variable may be C<undef>, any
209previously assigned value, or possibly anything else. Don't rely on
210it. Future versions of perl might do something different from the
211version of perl you try it out on. Here be dragons.
212X<my>
213
214=head2 Compound Statements
215X<statement, compound> X<block> X<bracket, curly> X<curly bracket> X<brace>
216X<{> X<}> X<if> X<unless> X<while> X<until> X<foreach> X<for> X<continue>
217
218In Perl, a sequence of statements that defines a scope is called a block.
219Sometimes a block is delimited by the file containing it (in the case
220of a required file, or the program as a whole), and sometimes a block
221is delimited by the extent of a string (in the case of an eval).
222
223But generally, a block is delimited by curly brackets, also known as braces.
224We will call this syntactic construct a BLOCK.
225
226The following compound statements may be used to control flow:
227
228 if (EXPR) BLOCK
229 if (EXPR) BLOCK else BLOCK
230 if (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK
231 unless (EXPR) BLOCK
232 unless (EXPR) BLOCK else BLOCK
233 unless (EXPR) BLOCK elsif (EXPR) BLOCK ... else BLOCK
234 LABEL while (EXPR) BLOCK
235 LABEL while (EXPR) BLOCK continue BLOCK
236 LABEL until (EXPR) BLOCK
237 LABEL until (EXPR) BLOCK continue BLOCK
238 LABEL for (EXPR; EXPR; EXPR) BLOCK
239 LABEL foreach VAR (LIST) BLOCK
240 LABEL foreach VAR (LIST) BLOCK continue BLOCK
241 LABEL BLOCK continue BLOCK
242 PHASE BLOCK
243
244Note that, unlike C and Pascal, these are defined in terms of BLOCKs,
245not statements. This means that the curly brackets are I<required>--no
246dangling statements allowed. If you want to write conditionals without
247curly brackets there are several other ways to do it. The following
248all do the same thing:
249
250 if (!open(FOO)) { die "Can't open $FOO: $!"; }
251 die "Can't open $FOO: $!" unless open(FOO);
252 open(FOO) or die "Can't open $FOO: $!"; # FOO or bust!
253 open(FOO) ? 'hi mom' : die "Can't open $FOO: $!";
254 # a bit exotic, that last one
255
256The C<if> statement is straightforward. Because BLOCKs are always
257bounded by curly brackets, there is never any ambiguity about which
258C<if> an C<else> goes with. If you use C<unless> in place of C<if>,
259the sense of the test is reversed. Like C<if>, C<unless> can be followed
260by C<else>. C<unless> can even be followed by one or more C<elsif>
261statements, though you may want to think twice before using that particular
262language construct, as everyone reading your code will have to think at least
263twice before they can understand what's going on.
264
265The C<while> statement executes the block as long as the expression is
266L<true|/"Truth and Falsehood">.
267The C<until> statement executes the block as long as the expression is
268false.
269The LABEL is optional, and if present, consists of an identifier followed
270by a colon. The LABEL identifies the loop for the loop control
271statements C<next>, C<last>, and C<redo>.
272If the LABEL is omitted, the loop control statement
273refers to the innermost enclosing loop. This may include dynamically
274looking back your call-stack at run time to find the LABEL. Such
275desperate behavior triggers a warning if you use the C<use warnings>
276pragma or the B<-w> flag.
277
278If there is a C<continue> BLOCK, it is always executed just before the
279conditional is about to be evaluated again. Thus it can be used to
280increment a loop variable, even when the loop has been continued via
281the C<next> statement.
282
283When a block is preceding by a compilation phase keyword such as C<BEGIN>,
284C<END>, C<INIT>, C<CHECK>, or C<UNITCHECK>, then the block will run only
285during the corresponding phase of execution. See L<perlmod> for more details.
286
287Extension modules can also hook into the Perl parser to define new
288kinds of compound statement. These are introduced by a keyword which
289the extension recognizes, and the syntax following the keyword is
290defined entirely by the extension. If you are an implementor, see
291L<perlapi/PL_keyword_plugin> for the mechanism. If you are using such
292a module, see the module's documentation for details of the syntax that
293it defines.
294
295=head2 Loop Control
296X<loop control> X<loop, control> X<next> X<last> X<redo> X<continue>
297
298The C<next> command starts the next iteration of the loop:
299
300 LINE: while (<STDIN>) {
301 next LINE if /^#/; # discard comments
302 ...
303 }
304
305The C<last> command immediately exits the loop in question. The
306C<continue> block, if any, is not executed:
307
308 LINE: while (<STDIN>) {
309 last LINE if /^$/; # exit when done with header
310 ...
311 }
312
313The C<redo> command restarts the loop block without evaluating the
314conditional again. The C<continue> block, if any, is I<not> executed.
315This command is normally used by programs that want to lie to themselves
316about what was just input.
317
318For example, when processing a file like F</etc/termcap>.
319If your input lines might end in backslashes to indicate continuation, you
320want to skip ahead and get the next record.
321
322 while (<>) {
323 chomp;
324 if (s/\\$//) {
325 $_ .= <>;
326 redo unless eof();
327 }
328 # now process $_
329 }
330
331which is Perl short-hand for the more explicitly written version:
332
333 LINE: while (defined($line = <ARGV>)) {
334 chomp($line);
335 if ($line =~ s/\\$//) {
336 $line .= <ARGV>;
337 redo LINE unless eof(); # not eof(ARGV)!
338 }
339 # now process $line
340 }
341
342Note that if there were a C<continue> block on the above code, it would
343get executed only on lines discarded by the regex (since redo skips the
344continue block). A continue block is often used to reset line counters
345or C<m?pat?> one-time matches:
346
347 # inspired by :1,$g/fred/s//WILMA/
348 while (<>) {
349 m?(fred)? && s//WILMA $1 WILMA/;
350 m?(barney)? && s//BETTY $1 BETTY/;
351 m?(homer)? && s//MARGE $1 MARGE/;
352 } continue {
353 print "$ARGV $.: $_";
354 close ARGV if eof; # reset $.
355 reset if eof; # reset ?pat?
356 }
357
358If the word C<while> is replaced by the word C<until>, the sense of the
359test is reversed, but the conditional is still tested before the first
360iteration.
361
362The loop control statements don't work in an C<if> or C<unless>, since
363they aren't loops. You can double the braces to make them such, though.
364
365 if (/pattern/) {{
366 last if /fred/;
367 next if /barney/; # same effect as "last", but doesn't document as well
368 # do something here
369 }}
370
371This is caused by the fact that a block by itself acts as a loop that
372executes once, see L<"Basic BLOCKs">.
373
374The form C<while/if BLOCK BLOCK>, available in Perl 4, is no longer
375available. Replace any occurrence of C<if BLOCK> by C<if (do BLOCK)>.
376
377=head2 For Loops
378X<for> X<foreach>
379
380Perl's C-style C<for> loop works like the corresponding C<while> loop;
381that means that this:
382
383 for ($i = 1; $i < 10; $i++) {
384 ...
385 }
386
387is the same as this:
388
389 $i = 1;
390 while ($i < 10) {
391 ...
392 } continue {
393 $i++;
394 }
395
396There is one minor difference: if variables are declared with C<my>
397in the initialization section of the C<for>, the lexical scope of
398those variables is exactly the C<for> loop (the body of the loop
399and the control sections).
400X<my>
401
402Besides the normal array index looping, C<for> can lend itself
403to many other interesting applications. Here's one that avoids the
404problem you get into if you explicitly test for end-of-file on
405an interactive file descriptor causing your program to appear to
406hang.
407X<eof> X<end-of-file> X<end of file>
408
409 $on_a_tty = -t STDIN && -t STDOUT;
410 sub prompt { print "yes? " if $on_a_tty }
411 for ( prompt(); <STDIN>; prompt() ) {
412 # do something
413 }
414
415Using C<readline> (or the operator form, C<< <EXPR> >>) as the
416conditional of a C<for> loop is shorthand for the following. This
417behaviour is the same as a C<while> loop conditional.
418X<readline> X<< <> >>
419
420 for ( prompt(); defined( $_ = <STDIN> ); prompt() ) {
421 # do something
422 }
423
424=head2 Foreach Loops
425X<for> X<foreach>
426
427The C<foreach> loop iterates over a normal list value and sets the
428variable VAR to be each element of the list in turn. If the variable
429is preceded with the keyword C<my>, then it is lexically scoped, and
430is therefore visible only within the loop. Otherwise, the variable is
431implicitly local to the loop and regains its former value upon exiting
432the loop. If the variable was previously declared with C<my>, it uses
433that variable instead of the global one, but it's still localized to
434the loop. This implicit localization occurs I<only> in a C<foreach>
435loop.
436X<my> X<local>
437
438The C<foreach> keyword is actually a synonym for the C<for> keyword, so
439you can use C<foreach> for readability or C<for> for brevity. (Or because
440the Bourne shell is more familiar to you than I<csh>, so writing C<for>
441comes more naturally.) If VAR is omitted, C<$_> is set to each value.
442X<$_>
443
444If any element of LIST is an lvalue, you can modify it by modifying
445VAR inside the loop. Conversely, if any element of LIST is NOT an
446lvalue, any attempt to modify that element will fail. In other words,
447the C<foreach> loop index variable is an implicit alias for each item
448in the list that you're looping over.
449X<alias>
450
451If any part of LIST is an array, C<foreach> will get very confused if
452you add or remove elements within the loop body, for example with
453C<splice>. So don't do that.
454X<splice>
455
456C<foreach> probably won't do what you expect if VAR is a tied or other
457special variable. Don't do that either.
458
459Examples:
460
461 for (@ary) { s/foo/bar/ }
462
463 for my $elem (@elements) {
464 $elem *= 2;
465 }
466
467 for $count (10,9,8,7,6,5,4,3,2,1,'BOOM') {
468 print $count, "\n"; sleep(1);
469 }
470
471 for (1..15) { print "Merry Christmas\n"; }
472
473 foreach $item (split(/:[\\\n:]*/, $ENV{TERMCAP})) {
474 print "Item: $item\n";
475 }
476
477Here's how a C programmer might code up a particular algorithm in Perl:
478
479 for (my $i = 0; $i < @ary1; $i++) {
480 for (my $j = 0; $j < @ary2; $j++) {
481 if ($ary1[$i] > $ary2[$j]) {
482 last; # can't go to outer :-(
483 }
484 $ary1[$i] += $ary2[$j];
485 }
486 # this is where that last takes me
487 }
488
489Whereas here's how a Perl programmer more comfortable with the idiom might
490do it:
491
492 OUTER: for my $wid (@ary1) {
493 INNER: for my $jet (@ary2) {
494 next OUTER if $wid > $jet;
495 $wid += $jet;
496 }
497 }
498
499See how much easier this is? It's cleaner, safer, and faster. It's
500cleaner because it's less noisy. It's safer because if code gets added
501between the inner and outer loops later on, the new code won't be
502accidentally executed. The C<next> explicitly iterates the other loop
503rather than merely terminating the inner one. And it's faster because
504Perl executes a C<foreach> statement more rapidly than it would the
505equivalent C<for> loop.
506
507=head2 Basic BLOCKs
508X<block>
509
510A BLOCK by itself (labeled or not) is semantically equivalent to a
511loop that executes once. Thus you can use any of the loop control
512statements in it to leave or restart the block. (Note that this is
513I<NOT> true in C<eval{}>, C<sub{}>, or contrary to popular belief
514C<do{}> blocks, which do I<NOT> count as loops.) The C<continue>
515block is optional.
516
517The BLOCK construct can be used to emulate case structures.
518
519 SWITCH: {
520 if (/^abc/) { $abc = 1; last SWITCH; }
521 if (/^def/) { $def = 1; last SWITCH; }
522 if (/^xyz/) { $xyz = 1; last SWITCH; }
523 $nothing = 1;
524 }
525
526Such constructs are quite frequently used, because older versions
527of Perl had no official C<switch> statement.
528
529=head2 Switch statements
530
531X<switch> X<case> X<given> X<when> X<default>
532
533Starting from Perl 5.10, you can say
534
535 use feature "switch";
536
537which enables a switch feature that is closely based on the
538Perl 6 proposal. Starting from Perl 5.16, one can prefix the switch
539keywords with C<CORE::> to access the feature without a C<use feature>
540statement.
541
542The keywords C<given> and C<when> are analogous
543to C<switch> and C<case> in other languages, so the code
544above could be written as
545
546 given($_) {
547 when (/^abc/) { $abc = 1; }
548 when (/^def/) { $def = 1; }
549 when (/^xyz/) { $xyz = 1; }
550 default { $nothing = 1; }
551 }
552
553This construct is very flexible and powerful. For example:
554
555 use feature ":5.10";
556 given($foo) {
557 when (undef) {
558 say '$foo is undefined';
559 }
560 when ("foo") {
561 say '$foo is the string "foo"';
562 }
563 when ([1,3,5,7,9]) {
564 say '$foo is an odd digit';
565 continue; # Fall through
566 }
567 when ($_ < 100) {
568 say '$foo is numerically less than 100';
569 }
570 when (\&complicated_check) {
571 say 'a complicated check for $foo is true';
572 }
573 default {
574 die q(I don't know what to do with $foo);
575 }
576 }
577
578C<given(EXPR)> will assign the value of EXPR to C<$_>
579within the lexical scope of the block, so it's similar to
580
581 do { my $_ = EXPR; ... }
582
583except that the block is automatically broken out of by a
584successful C<when> or an explicit C<break>.
585
586Most of the power comes from implicit smart matching:
587
588 when($foo)
589
590is exactly equivalent to
591
592 when($_ ~~ $foo)
593
594Most of the time, C<when(EXPR)> is treated as an implicit smart match of
595C<$_>, i.e. C<$_ ~~ EXPR>. (See L</"Smart matching in detail"> for more
596information on smart matching.) But when EXPR is one of the below
597exceptional cases, it is used directly as a boolean:
598
599=over 4
600
601=item *
602
603a subroutine or method call
604
605=item *
606
607a regular expression match, i.e. C</REGEX/> or C<$foo =~ /REGEX/>,
608or a negated regular expression match (C<!/REGEX/> or C<$foo !~ /REGEX/>).
609
610=item *
611
612a comparison such as C<$_ E<lt> 10> or C<$x eq "abc">
613(or of course C<$_ ~~ $c>)
614
615=item *
616
617C<defined(...)>, C<exists(...)>, or C<eof(...)>
618
619=item *
620
621a negated expression C<!(...)> or C<not (...)>, or a logical
622exclusive-or C<(...) xor (...)>.
623
624=item *
625
626a filetest operator, with the exception of C<-s>, C<-M>, C<-A>, and C<-C>,
627that return numerical values, not boolean ones.
628
629=item *
630
631the C<..> and C<...> flip-flop operators.
632
633=back
634
635In those cases the value of EXPR is used directly as a boolean.
636
637Furthermore, Perl inspects the operands of the binary boolean operators to
638decide whether to use smart matching for each one by applying the above test to
639the operands:
640
641=over 4
642
643=item *
644
645If EXPR is C<... && ...> or C<... and ...>, the test
646is applied recursively to both operands. If I<both>
647operands pass the test, then the expression is treated
648as boolean; otherwise, smart matching is used.
649
650=item *
651
652If EXPR is C<... || ...>, C<... // ...> or C<... or ...>, the test
653is applied recursively to the first operand (which may be a
654higher-precedence AND operator, for example). If the first operand
655is to use smart matching, then both operands will do so; if it is
656not, then the second argument will not be either.
657
658=back
659
660These rules look complicated, but usually they will do what
661you want. For example:
662
663 when (/^\d+$/ && $_ < 75) { ... }
664
665will be treated as a boolean match because the rules say both a regex match and
666an explicit test on $_ will be treated as boolean.
667
668Also:
669
670 when ([qw(foo bar)] && /baz/) { ... }
671
672will use smart matching because only I<one> of the operands is a boolean; the
673other uses smart matching, and that wins.
674
675Further:
676
677 when ([qw(foo bar)] || /^baz/) { ... }
678
679will use smart matching (only the first operand is considered), whereas
680
681 when (/^baz/ || [qw(foo bar)]) { ... }
682
683will test only the regex, which causes both operands to be treated as boolean.
684Watch out for this one, then, because an arrayref is always a true value, which
685makes it effectively redundant.
686
687Tautologous boolean operators are still going to be optimized away. Don't be
688tempted to write
689
690 when ('foo' or 'bar') { ... }
691
692This will optimize down to C<'foo'>, so C<'bar'> will never be considered (even
693though the rules say to use a smart match on C<'foo'>). For an alternation like
694this, an array ref will work, because this will instigate smart matching:
695
696 when ([qw(foo bar)] { ... }
697
698This is somewhat equivalent to the C-style switch statement's fallthrough
699functionality (not to be confused with I<Perl's> fallthrough functionality - see
700below), wherein the same block is used for several C<case> statements.
701
702Another useful shortcut is that, if you use a literal array
703or hash as the argument to C<given>, it is turned into a
704reference. So C<given(@foo)> is the same as C<given(\@foo)>,
705for example.
706
707C<default> behaves exactly like C<when(1 == 1)>, which is
708to say that it always matches.
709
710=head3 Breaking out
711
712You can use the C<break> keyword to break out of the enclosing
713C<given> block. Every C<when> block is implicitly ended with
714a C<break>.
715
716=head3 Fall-through
717
718You can use the C<continue> keyword to fall through from one
719case to the next:
720
721 given($foo) {
722 when (/x/) { say '$foo contains an x'; continue }
723 when (/y/) { say '$foo contains a y' }
724 default { say '$foo does not contain a y' }
725 }
726
727=head3 Return value
728
729When a C<given> statement is also a valid expression (e.g.
730when it's the last statement of a block), it evaluates to :
731
732=over 4
733
734=item *
735
736an empty list as soon as an explicit C<break> is encountered.
737
738=item *
739
740the value of the last evaluated expression of the successful
741C<when>/C<default> clause, if there's one.
742
743=item *
744
745the value of the last evaluated expression of the C<given> block if no
746condition is true.
747
748=back
749
750In both last cases, the last expression is evaluated in the context that
751was applied to the C<given> block.
752
753Note that, unlike C<if> and C<unless>, failed C<when> statements always
754evaluate to an empty list.
755
756 my $price = do { given ($item) {
757 when ([ 'pear', 'apple' ]) { 1 }
758 break when 'vote'; # My vote cannot be bought
759 1e10 when /Mona Lisa/;
760 'unknown';
761 } };
762
763Currently, C<given> blocks can't always be used as proper expressions. This
764may be addressed in a future version of perl.
765
766=head3 Switching in a loop
767
768Instead of using C<given()>, you can use a C<foreach()> loop.
769For example, here's one way to count how many times a particular
770string occurs in an array:
771
772 my $count = 0;
773 for (@array) {
774 when ("foo") { ++$count }
775 }
776 print "\@array contains $count copies of 'foo'\n";
777
778At the end of all C<when> blocks, there is an implicit C<next>.
779You can override that with an explicit C<last> if you're only
780interested in the first match.
781
782This doesn't work if you explicitly specify a loop variable,
783as in C<for $item (@array)>. You have to use the default
784variable C<$_>. (You can use C<for my $_ (@array)>.)
785
786=head3 Smart matching in detail
787
788The behaviour of a smart match depends on what type of thing its arguments
789are. The behaviour is determined by the following table: the first row
790that applies determines the match behaviour (which is thus mostly
791determined by the type of the right operand). Note that the smart match
792implicitly dereferences any non-blessed hash or array ref, so the "Hash"
793and "Array" entries apply in those cases. (For blessed references, the
794"Object" entries apply.)
795
796Note that the "Matching Code" column is not always an exact rendition. For
797example, the smart match operator short-circuits whenever possible, but
798C<grep> does not.
799
800 $a $b Type of Match Implied Matching Code
801 ====== ===== ===================== =============
802 Any undef undefined !defined $a
803
804 Any Object invokes ~~ overloading on $object, or dies
805
806 Hash CodeRef sub truth for each key[1] !grep { !$b->($_) } keys %$a
807 Array CodeRef sub truth for each elt[1] !grep { !$b->($_) } @$a
808 Any CodeRef scalar sub truth $b->($a)
809
810 Hash Hash hash keys identical (every key is found in both hashes)
811 Array Hash hash keys intersection grep { exists $b->{$_} } @$a
812 Regex Hash hash key grep grep /$a/, keys %$b
813 undef Hash always false (undef can't be a key)
814 Any Hash hash entry existence exists $b->{$a}
815
816 Hash Array hash keys intersection grep { exists $a->{$_} } @$b
817 Array Array arrays are comparable[2]
818 Regex Array array grep grep /$a/, @$b
819 undef Array array contains undef grep !defined, @$b
820 Any Array match against an array element[3]
821 grep $a ~~ $_, @$b
822
823 Hash Regex hash key grep grep /$b/, keys %$a
824 Array Regex array grep grep /$b/, @$a
825 Any Regex pattern match $a =~ /$b/
826
827 Object Any invokes ~~ overloading on $object, or falls back:
828 undef Any undefined !defined($b)
829 Any Num numeric equality $a == $b
830 Num numish[4] numeric equality $a == $b
831 Any Any string equality $a eq $b
832
833 1 - empty hashes or arrays will match.
834 2 - that is, each element smart-matches the element of same index in the
835 other array. [3]
836 3 - If a circular reference is found, we fall back to referential equality.
837 4 - either a real number, or a string that looks like a number
838
839=head3 Custom matching via overloading
840
841You can change the way that an object is matched by overloading
842the C<~~> operator. This may alter the usual smart match semantics.
843
844It should be noted that C<~~> will refuse to work on objects that
845don't overload it (in order to avoid relying on the object's
846underlying structure).
847
848Note also that smart match's matching rules take precedence over
849overloading, so if C<$obj> has smart match overloading, then
850
851 $obj ~~ X
852
853will not automatically invoke the overload method with X as an argument;
854instead the table above is consulted as normal, and based in the type of X,
855overloading may or may not be invoked.
856
857See L<overload>.
858
859=head3 Differences from Perl 6
860
861The Perl 5 smart match and C<given>/C<when> constructs are not
862absolutely identical to their Perl 6 analogues. The most visible
863difference is that, in Perl 5, parentheses are required around
864the argument to C<given()> and C<when()> (except when this last
865one is used as a statement modifier). Parentheses in Perl 6
866are always optional in a control construct such as C<if()>,
867C<while()>, or C<when()>; they can't be made optional in Perl
8685 without a great deal of potential confusion, because Perl 5
869would parse the expression
870
871 given $foo {
872 ...
873 }
874
875as though the argument to C<given> were an element of the hash
876C<%foo>, interpreting the braces as hash-element syntax.
877
878The table of smart matches is not identical to that proposed by the
879Perl 6 specification, mainly due to the differences between Perl 6's
880and Perl 5's data models.
881
882In Perl 6, C<when()> will always do an implicit smart match
883with its argument, whilst it is convenient in Perl 5 to
884suppress this implicit smart match in certain situations,
885as documented above. (The difference is largely because Perl 5
886does not, even internally, have a boolean type.)
887
888=head2 Goto
889X<goto>
890
891Although not for the faint of heart, Perl does support a C<goto>
892statement. There are three forms: C<goto>-LABEL, C<goto>-EXPR, and
893C<goto>-&NAME. A loop's LABEL is not actually a valid target for
894a C<goto>; it's just the name of the loop.
895
896The C<goto>-LABEL form finds the statement labeled with LABEL and resumes
897execution there. It may not be used to go into any construct that
898requires initialization, such as a subroutine or a C<foreach> loop. It
899also can't be used to go into a construct that is optimized away. It
900can be used to go almost anywhere else within the dynamic scope,
901including out of subroutines, but it's usually better to use some other
902construct such as C<last> or C<die>. The author of Perl has never felt the
903need to use this form of C<goto> (in Perl, that is--C is another matter).
904
905The C<goto>-EXPR form expects a label name, whose scope will be resolved
906dynamically. This allows for computed C<goto>s per FORTRAN, but isn't
907necessarily recommended if you're optimizing for maintainability:
908
909 goto(("FOO", "BAR", "GLARCH")[$i]);
910
911The C<goto>-&NAME form is highly magical, and substitutes a call to the
912named subroutine for the currently running subroutine. This is used by
913C<AUTOLOAD()> subroutines that wish to load another subroutine and then
914pretend that the other subroutine had been called in the first place
915(except that any modifications to C<@_> in the current subroutine are
916propagated to the other subroutine.) After the C<goto>, not even C<caller()>
917will be able to tell that this routine was called first.
918
919In almost all cases like this, it's usually a far, far better idea to use the
920structured control flow mechanisms of C<next>, C<last>, or C<redo> instead of
921resorting to a C<goto>. For certain applications, the catch and throw pair of
922C<eval{}> and die() for exception processing can also be a prudent approach.
923
924=head2 PODs: Embedded Documentation
925X<POD> X<documentation>
926
927Perl has a mechanism for intermixing documentation with source code.
928While it's expecting the beginning of a new statement, if the compiler
929encounters a line that begins with an equal sign and a word, like this
930
931 =head1 Here There Be Pods!
932
933Then that text and all remaining text up through and including a line
934beginning with C<=cut> will be ignored. The format of the intervening
935text is described in L<perlpod>.
936
937This allows you to intermix your source code
938and your documentation text freely, as in
939
940 =item snazzle($)
941
942 The snazzle() function will behave in the most spectacular
943 form that you can possibly imagine, not even excepting
944 cybernetic pyrotechnics.
945
946 =cut back to the compiler, nuff of this pod stuff!
947
948 sub snazzle($) {
949 my $thingie = shift;
950 .........
951 }
952
953Note that pod translators should look at only paragraphs beginning
954with a pod directive (it makes parsing easier), whereas the compiler
955actually knows to look for pod escapes even in the middle of a
956paragraph. This means that the following secret stuff will be
957ignored by both the compiler and the translators.
958
959 $a=3;
960 =secret stuff
961 warn "Neither POD nor CODE!?"
962 =cut back
963 print "got $a\n";
964
965You probably shouldn't rely upon the C<warn()> being podded out forever.
966Not all pod translators are well-behaved in this regard, and perhaps
967the compiler will become pickier.
968
969One may also use pod directives to quickly comment out a section
970of code.
971
972=head2 Plain Old Comments (Not!)
973X<comment> X<line> X<#> X<preprocessor> X<eval>
974
975Perl can process line directives, much like the C preprocessor. Using
976this, one can control Perl's idea of filenames and line numbers in
977error or warning messages (especially for strings that are processed
978with C<eval()>). The syntax for this mechanism is almost the same as for
979most C preprocessors: it matches the regular expression
980
981 # example: '# line 42 "new_filename.plx"'
982 /^\# \s*
983 line \s+ (\d+) \s*
984 (?:\s("?)([^"]+)\g2)? \s*
985 $/x
986
987with C<$1> being the line number for the next line, and C<$3> being
988the optional filename (specified with or without quotes). Note that
989no whitespace may precede the C<< # >>, unlike modern C preprocessors.
990
991There is a fairly obvious gotcha included with the line directive:
992Debuggers and profilers will only show the last source line to appear
993at a particular line number in a given file. Care should be taken not
994to cause line number collisions in code you'd like to debug later.
995
996Here are some examples that you should be able to type into your command
997shell:
998
999 % perl
1000 # line 200 "bzzzt"
1001 # the `#' on the previous line must be the first char on line
1002 die 'foo';
1003 __END__
1004 foo at bzzzt line 201.
1005
1006 % perl
1007 # line 200 "bzzzt"
1008 eval qq[\n#line 2001 ""\ndie 'foo']; print $@;
1009 __END__
1010 foo at - line 2001.
1011
1012 % perl
1013 eval qq[\n#line 200 "foo bar"\ndie 'foo']; print $@;
1014 __END__
1015 foo at foo bar line 200.
1016
1017 % perl
1018 # line 345 "goop"
1019 eval "\n#line " . __LINE__ . ' "' . __FILE__ ."\"\ndie 'foo'";
1020 print $@;
1021 __END__
1022 foo at goop line 345.
1023
1024=cut