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