home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 July / AMIGA_1996_7.BIN / ausgabe_7_96 / pd-programmierung / perl5_002bin.lha / man / catp / perlsyn.0 < prev    next >
Text File  |  1996-03-02  |  43KB  |  727 lines

  1.  
  2.  
  3.  
  4. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  5.  
  6.  
  7. NNNNAAAAMMMMEEEE
  8.        perlsyn - Perl syntax
  9.  
  10. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  11.        A Perl script consists of a sequence of declarations and
  12.        statements.  The only things that need to be declared in
  13.        Perl are report formats and subroutines.  See the sections
  14.        below for more information on those declarations.  All
  15.        uninitialized user-created objects are assumed to start
  16.        with a null or 0 value until they are defined by some
  17.        explicit operation such as assignment.  (Though you can
  18.        get warnings about the use of undefined values if you
  19.        like.)  The sequence of statements is executed just once,
  20.        unlike in sssseeeedddd and aaaawwwwkkkk scripts, where the sequence of
  21.        statements is executed for each input line.  While this
  22.        means that you must explicitly loop over the lines of your
  23.        input file (or files), it also means you have much more
  24.        control over which files and which lines you look at.
  25.        (Actually, I'm lying--it is possible to do an implicit
  26.        loop with either the ----nnnn or ----pppp switch.  It's just not the
  27.        mandatory default like it is in sssseeeedddd and aaaawwwwkkkk.)
  28.  
  29.        DDDDeeeeccccllllaaaarrrraaaattttiiiioooonnnnssss
  30.  
  31.        Perl is, for the most part, a free-form language.  (The
  32.        only exception to this is format declarations, for obvious
  33.        reasons.) Comments are indicated by the "#" character, and
  34.        extend to the end of the line.  If you attempt to use ////****
  35.        ****//// C-style comments, it will be interpreted either as
  36.        division or pattern matching, depending on the context,
  37.        and C++ //////// comments just look like a null regular
  38.        expression, so don't do that.
  39.  
  40.        A declaration can be put anywhere a statement can, but has
  41.        no effect on the execution of the primary sequence of
  42.        statements--declarations all take effect at compile time.
  43.        Typically all the declarations are put at the beginning or
  44.        the end of the script.  However, if you're using
  45.        lexically-scoped private variables created with _m_y_(_),
  46.        you'll have to make sure your format or subroutine
  47.        definition is within the same block scope as the my if you
  48.        expect to to be able to access those private variables.
  49.  
  50.        Declaring a subroutine allows a subroutine name to be used
  51.        as if it were a list operator from that point forward in
  52.        the program.  You can declare a subroutine (prototyped to
  53.        take one scalar parameter) without defining it by saying
  54.        just:
  55.  
  56.            ssssuuuubbbb mmmmyyyynnnnaaaammmmeeee (((($$$$))));;;;
  57.            $$$$mmmmeeee ==== mmmmyyyynnnnaaaammmmeeee $$$$0000             oooorrrr ddddiiiieeee """"ccccaaaannnn''''tttt ggggeeeetttt mmmmyyyynnnnaaaammmmeeee"""";;;;
  58.  
  59.        Note that it functions as a list operator though, not as a
  60.        unary operator, so be careful to use oooorrrr instead of ||||||||
  61.  
  62.  
  63.  
  64. 30/Jan/96                perl 5.002 with                        1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  71.  
  72.  
  73.        there.
  74.  
  75.        Subroutines declarations can also be loaded up with the
  76.        rrrreeeeqqqquuuuiiiirrrreeee statement or both loaded and imported into your
  77.        namespace with a uuuusssseeee statement.  See the _p_e_r_l_m_o_d manpage
  78.        for details on this.
  79.  
  80.        A statement sequence may contain declarations of
  81.        lexically-scoped variables, but apart from declaring a
  82.        variable name, the declaration acts like an ordinary
  83.        statement, and is elaborated within the sequence of
  84.        statements as if it were an ordinary statement.  That
  85.        means it actually has both compile-time and run-time
  86.        effects.
  87.  
  88.        SSSSiiiimmmmpppplllleeee ssssttttaaaatttteeeemmmmeeeennnnttttssss
  89.  
  90.        The only kind of simple statement is an expression
  91.        evaluated for its side effects.  Every simple statement
  92.        must be terminated with a semicolon, unless it is the
  93.        final statement in a block, in which case the semicolon is
  94.        optional.  (A semicolon is still encouraged there if the
  95.        block takes up more than one line, since you may
  96.        eventually add another line.)  Note that there are some
  97.        operators like eeeevvvvaaaallll {{{{}}}} and ddddoooo {{{{}}}} that look like compound
  98.        statements, but aren't (they're just TERMs in an
  99.        expression), and thus need an explicit termination if used
  100.        as the last item in a statement.
  101.  
  102.        Any simple statement may optionally be followed by a
  103.        _S_I_N_G_L_E modifier, just before the terminating semicolon (or
  104.        block ending).  The possible modifiers are:
  105.  
  106.            iiiiffff EEEEXXXXPPPPRRRR
  107.            uuuunnnnlllleeeessssssss EEEEXXXXPPPPRRRR
  108.            wwwwhhhhiiiilllleeee EEEEXXXXPPPPRRRR
  109.            uuuunnnnttttiiiillll EEEEXXXXPPPPRRRR
  110.  
  111.        The iiiiffff and uuuunnnnlllleeeessssssss modifiers have the expected semantics,
  112.        presuming you're a speaker of English.  The wwwwhhhhiiiilllleeee and
  113.        uuuunnnnttttiiiillll modifiers also have the usual "while loop" semantics
  114.        (conditional evaluated first), except when applied to a
  115.        do-BLOCK (or to the now-deprecated do-SUBROUTINE
  116.        statement), in which case the block executes once before
  117.        the conditional is evaluated.  This is so that you can
  118.        write loops like:
  119.  
  120.            ddddoooo {{{{
  121.                $$$$lllliiiinnnneeee ==== <<<<SSSSTTTTDDDDIIIINNNN>>>>;;;;
  122.                ............
  123.            }}}} uuuunnnnttttiiiillll $$$$lllliiiinnnneeee  eeeeqqqq """"....\\\\nnnn"""";;;;
  124.  
  125.        See the ddddoooo entry in the _p_e_r_l_f_u_n_c manpage.  Note also that
  126.        the loop control statements described later will _N_O_T work
  127.  
  128.  
  129.  
  130. 30/Jan/96                perl 5.002 with                        2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  137.  
  138.  
  139.        in this construct, since modifiers don't take loop labels.
  140.        Sorry.  You can always wrap another block around it to do
  141.        that sort of thing.
  142.  
  143.        CCCCoooommmmppppoooouuuunnnndddd ssssttttaaaatttteeeemmmmeeeennnnttttssss
  144.  
  145.        In Perl, a sequence of statements that defines a scope is
  146.        called a block.  Sometimes a block is delimited by the
  147.        file containing it (in the case of a required file, or the
  148.        program as a whole), and sometimes a block is delimited by
  149.        the extent of a string (in the case of an eval).
  150.  
  151.        But generally, a block is delimited by curly brackets,
  152.        also known as braces.  We will call this syntactic
  153.        construct a BLOCK.
  154.  
  155.        The following compound statements may be used to control
  156.        flow:
  157.  
  158.            iiiiffff ((((EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK
  159.            iiiiffff ((((EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK eeeellllsssseeee BBBBLLLLOOOOCCCCKKKK
  160.            iiiiffff ((((EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK eeeellllssssiiiiffff ((((EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK ............ eeeellllsssseeee BBBBLLLLOOOOCCCCKKKK
  161.            LLLLAAAABBBBEEEELLLL wwwwhhhhiiiilllleeee ((((EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK
  162.            LLLLAAAABBBBEEEELLLL wwwwhhhhiiiilllleeee ((((EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK ccccoooonnnnttttiiiinnnnuuuueeee BBBBLLLLOOOOCCCCKKKK
  163.            LLLLAAAABBBBEEEELLLL ffffoooorrrr ((((EEEEXXXXPPPPRRRR;;;; EEEEXXXXPPPPRRRR;;;; EEEEXXXXPPPPRRRR)))) BBBBLLLLOOOOCCCCKKKK
  164.            LLLLAAAABBBBEEEELLLL ffffoooorrrreeeeaaaacccchhhh VVVVAAAARRRR ((((LLLLIIIISSSSTTTT)))) BBBBLLLLOOOOCCCCKKKK
  165.            LLLLAAAABBBBEEEELLLL BBBBLLLLOOOOCCCCKKKK ccccoooonnnnttttiiiinnnnuuuueeee BBBBLLLLOOOOCCCCKKKK
  166.  
  167.        Note that, unlike C and Pascal, these are defined in terms
  168.        of BLOCKs, not statements.  This means that the curly
  169.        brackets are _r_e_q_u_i_r_e_d--no dangling statements allowed.  If
  170.        you want to write conditionals without curly brackets
  171.        there are several other ways to do it.  The following all
  172.        do the same thing:
  173.  
  174.            iiiiffff ((((!!!!ooooppppeeeennnn((((FFFFOOOOOOOO)))))))) {{{{ ddddiiiieeee """"CCCCaaaannnn''''tttt ooooppppeeeennnn $$$$FFFFOOOOOOOO:::: $$$$!!!!"""";;;; }}}}
  175.            ddddiiiieeee """"CCCCaaaannnn''''tttt ooooppppeeeennnn $$$$FFFFOOOOOOOO:::: $$$$!!!!"""" uuuunnnnlllleeeessssssss ooooppppeeeennnn((((FFFFOOOOOOOO))));;;;
  176.            ooooppppeeeennnn((((FFFFOOOOOOOO)))) oooorrrr ddddiiiieeee """"CCCCaaaannnn''''tttt ooooppppeeeennnn $$$$FFFFOOOOOOOO:::: $$$$!!!!"""";;;;     #### FFFFOOOOOOOO oooorrrr bbbbuuuusssstttt!!!!
  177.            ooooppppeeeennnn((((FFFFOOOOOOOO)))) ???? ''''hhhhiiii mmmmoooommmm'''' :::: ddddiiiieeee """"CCCCaaaannnn''''tttt ooooppppeeeennnn $$$$FFFFOOOOOOOO:::: $$$$!!!!"""";;;;
  178.                                #### aaaa bbbbiiiitttt eeeexxxxoooottttiiiicccc,,,, tttthhhhaaaatttt llllaaaasssstttt oooonnnneeee
  179.  
  180.        The iiiiffff statement is straightforward.  Since BLOCKs are
  181.        always bounded by curly brackets, there is never any
  182.        ambiguity about which iiiiffff an eeeellllsssseeee goes with.  If you use
  183.        uuuunnnnlllleeeessssssss in place of iiiiffff, the sense of the test is reversed.
  184.  
  185.        The wwwwhhhhiiiilllleeee statement executes the block as long as the
  186.        expression is true (does not evaluate to the null string
  187.        or 0 or "0").  The LABEL is optional, and if present,
  188.        consists of an identifier followed by a colon.  The LABEL
  189.        identifies the loop for the loop control statements nnnneeeexxxxtttt,
  190.        llllaaaasssstttt, and rrrreeeeddddoooo.  If the LABEL is omitted, the loop control
  191.        statement refers to the innermost enclosing loop.  This
  192.        may include dynamically looking back your call-stack at
  193.  
  194.  
  195.  
  196. 30/Jan/96                perl 5.002 with                        3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  203.  
  204.  
  205.        run time to find the LABEL.  Such desperate behavior
  206.        triggers a warning if you use the ----wwww flag.
  207.  
  208.        If there is a ccccoooonnnnttttiiiinnnnuuuueeee BLOCK, it is always executed just
  209.        before the conditional is about to be evaluated again,
  210.        just like the third part of a ffffoooorrrr loop in C.  Thus it can
  211.        be used to increment a loop variable, even when the loop
  212.        has been continued via the nnnneeeexxxxtttt statement (which is
  213.        similar to the C ccccoooonnnnttttiiiinnnnuuuueeee statement).
  214.  
  215.        LLLLoooooooopppp CCCCoooonnnnttttrrrroooollll
  216.  
  217.        The nnnneeeexxxxtttt command is like the ccccoooonnnnttttiiiinnnnuuuueeee statement in C; it
  218.        starts the next iteration of the loop:
  219.  
  220.            LLLLIIIINNNNEEEE:::: wwwwhhhhiiiilllleeee ((((<<<<SSSSTTTTDDDDIIIINNNN>>>>)))) {{{{
  221.                nnnneeeexxxxtttt LLLLIIIINNNNEEEE iiiiffff ////^^^^####////;;;;      #### ddddiiiissssccccaaaarrrrdddd ccccoooommmmmmmmeeeennnnttttssss
  222.                ............
  223.            }}}}
  224.  
  225.        The llllaaaasssstttt command is like the bbbbrrrreeeeaaaakkkk statement in C (as used
  226.        in loops); it immediately exits the loop in question.  The
  227.        ccccoooonnnnttttiiiinnnnuuuueeee block, if any, is not executed:
  228.  
  229.            LLLLIIIINNNNEEEE:::: wwwwhhhhiiiilllleeee ((((<<<<SSSSTTTTDDDDIIIINNNN>>>>)))) {{{{
  230.                llllaaaasssstttt LLLLIIIINNNNEEEE iiiiffff ////^^^^$$$$////;;;;      #### eeeexxxxiiiitttt wwwwhhhheeeennnn ddddoooonnnneeee wwwwiiiitttthhhh hhhheeeeaaaaddddeeeerrrr
  231.                ............
  232.            }}}}
  233.  
  234.        The rrrreeeeddddoooo command restarts the loop block without
  235.        evaluating the conditional again.  The ccccoooonnnnttttiiiinnnnuuuueeee block, if
  236.        any, is _n_o_t executed.  This command is normally used by
  237.        programs that want to lie to themselves about what was
  238.        just input.
  239.  
  240.        For example, when processing a file like _/_e_t_c_/_t_e_r_m_c_a_p.  If
  241.        your input lines might end in backslashes to indicate
  242.        continuation, you want to skip ahead and get the next
  243.        record.
  244.  
  245.            wwwwhhhhiiiilllleeee ((((<<<<>>>>)))) {{{{
  246.                cccchhhhoooommmmpppp;;;;
  247.                iiiiffff ((((ssss////\\\\\\\\$$$$////////)))) {{{{
  248.                    $$$$____ ....==== <<<<>>>>;;;;
  249.                    rrrreeeeddddoooo uuuunnnnlllleeeessssssss eeeeooooffff(((())));;;;
  250.                }}}}
  251.                #### nnnnoooowwww pppprrrroooocccceeeessssssss $$$$____
  252.            }}}}
  253.  
  254.        which is Perl short-hand for the more explicitly written
  255.        version:
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262. 30/Jan/96                perl 5.002 with                        4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  269.  
  270.  
  271.            LLLLIIIINNNNEEEE:::: wwwwhhhhiiiilllleeee (((($$$$lllliiiinnnneeee ==== <<<<AAAARRRRGGGGVVVV>>>>)))) {{{{
  272.                cccchhhhoooommmmpppp(((($$$$lllliiiinnnneeee))));;;;
  273.                iiiiffff (((($$$$lllliiiinnnneeee ====~~~~ ssss////\\\\\\\\$$$$////////)))) {{{{
  274.                    $$$$lllliiiinnnneeee ....==== <<<<AAAARRRRGGGGVVVV>>>>;;;;
  275.                    rrrreeeeddddoooo LLLLIIIINNNNEEEE uuuunnnnlllleeeessssssss eeeeooooffff(((())));;;; #### nnnnooootttt eeeeooooffff((((AAAARRRRGGGGVVVV))))!!!!
  276.                }}}}
  277.                #### nnnnoooowwww pppprrrroooocccceeeessssssss $$$$lllliiiinnnneeee
  278.            }}}}
  279.  
  280.        Or here's a a simpleminded Pascal comment stripper
  281.        (warning: assumes no { or } in strings)
  282.  
  283.            LLLLIIIINNNNEEEE:::: wwwwhhhhiiiilllleeee ((((<<<<SSSSTTTTDDDDIIIINNNN>>>>)))) {{{{
  284.                wwwwhhhhiiiilllleeee ((((ssss||||(((({{{{....****}}}}....****)))){{{{....****}}}}||||$$$$1111 ||||)))) {{{{}}}}
  285.                ssss||||{{{{....****}}}}|||| ||||;;;;
  286.                iiiiffff ((((ssss||||{{{{....****|||| ||||)))) {{{{
  287.                    $$$$ffffrrrroooonnnntttt ==== $$$$____;;;;
  288.                    wwwwhhhhiiiilllleeee ((((<<<<SSSSTTTTDDDDIIIINNNN>>>>)))) {{{{
  289.                        iiiiffff ((((////}}}}////)))) {{{{      #### eeeennnndddd ooooffff ccccoooommmmmmmmeeeennnntttt????
  290.                            ssss||||^^^^||||$$$$ffffrrrroooonnnntttt{{{{||||;;;;
  291.                            rrrreeeeddddoooo LLLLIIIINNNNEEEE;;;;
  292.                        }}}}
  293.                    }}}}
  294.                }}}}
  295.                pppprrrriiiinnnntttt;;;;
  296.            }}}}
  297.  
  298.        Note that if there were a ccccoooonnnnttttiiiinnnnuuuueeee block on the above
  299.        code, it would get executed even on discarded lines.
  300.  
  301.        If the word wwwwhhhhiiiilllleeee is replaced by the word uuuunnnnttttiiiillll, the sense
  302.        of the test is reversed, but the conditional is still
  303.        tested before the first iteration.
  304.  
  305.        In either the iiiiffff or the wwwwhhhhiiiilllleeee statement, you may replace
  306.        "(EXPR)" with a BLOCK, and the conditional is true if the
  307.        value of the last statement in that block is true.  While
  308.        this "feature" continues to work in version 5, it has been
  309.        deprecated, so please change any occurrences of "if BLOCK"
  310.        to "if (do BLOCK)".
  311.  
  312.        FFFFoooorrrr LLLLooooooooppppssss
  313.  
  314.        Perl's C-style ffffoooorrrr loop works exactly like the
  315.        corresponding wwwwhhhhiiiilllleeee loop; that means that this:
  316.  
  317.            ffffoooorrrr (((($$$$iiii ==== 1111;;;; $$$$iiii <<<< 11110000;;;; $$$$iiii++++++++)))) {{{{
  318.                ............
  319.            }}}}
  320.  
  321.        is the same as this:
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328. 30/Jan/96                perl 5.002 with                        5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  335.  
  336.  
  337.            $$$$iiii ==== 1111;;;;
  338.            wwwwhhhhiiiilllleeee (((($$$$iiii <<<< 11110000)))) {{{{
  339.                ............
  340.            }}}} ccccoooonnnnttttiiiinnnnuuuueeee {{{{
  341.                $$$$iiii++++++++;;;;
  342.            }}}}
  343.  
  344.        Besides the normal array index looping, ffffoooorrrr can lend
  345.        itself to many other interesting applications.  Here's one
  346.        that avoids the problem you get into if you explicitly
  347.        test for end-of-file on an interactive file descriptor
  348.        causing your program to appear to hang.
  349.  
  350.            $$$$oooonnnn____aaaa____ttttttttyyyy ==== ----tttt SSSSTTTTDDDDIIIINNNN &&&&&&&& ----tttt SSSSTTTTDDDDOOOOUUUUTTTT;;;;
  351.            ssssuuuubbbb pppprrrroooommmmpppptttt {{{{ pppprrrriiiinnnntttt """"yyyyeeeessss???? """" iiiiffff $$$$oooonnnn____aaaa____ttttttttyyyy }}}}
  352.            ffffoooorrrr (((( pppprrrroooommmmpppptttt(((())));;;; <<<<SSSSTTTTDDDDIIIINNNN>>>>;;;; pppprrrroooommmmpppptttt(((()))) )))) {{{{
  353.                #### ddddoooo ssssoooommmmeeeetttthhhhiiiinnnngggg
  354.            }}}}
  355.  
  356.  
  357.        FFFFoooorrrreeeeaaaacccchhhh LLLLooooooooppppssss
  358.  
  359.        The ffffoooorrrreeeeaaaacccchhhh loop iterates over a normal list value and
  360.        sets the variable VAR to be each element of the list in
  361.        turn.  The variable is implicitly local to the loop and
  362.        regains its former value upon exiting the loop.  If the
  363.        variable was previously declared with mmmmyyyy, it uses that
  364.        variable instead of the global one, but it's still
  365.        localized to the loop.  This can cause problems if you
  366.        have subroutine or format declarations within that block's
  367.        scope.
  368.  
  369.        The ffffoooorrrreeeeaaaacccchhhh keyword is actually a synonym for the ffffoooorrrr
  370.        keyword, so you can use ffffoooorrrreeeeaaaacccchhhh for readability or ffffoooorrrr for
  371.        brevity.  If VAR is omitted, $$$$____ is set to each value.  If
  372.        LIST is an actual array (as opposed to an expression
  373.        returning a list value), you can modify each element of
  374.        the array by modifying VAR inside the loop.  That's
  375.        because the ffffoooorrrreeeeaaaacccchhhh loop index variable is an implicit
  376.        alias for each item in the list that you're looping over.
  377.  
  378.        Examples:
  379.  
  380.            ffffoooorrrr ((((@@@@aaaarrrryyyy)))) {{{{ ssss////ffffoooooooo////bbbbaaaarrrr//// }}}}
  381.  
  382.            ffffoooorrrreeeeaaaacccchhhh $$$$eeeelllleeeemmmm ((((@@@@eeeelllleeeemmmmeeeennnnttttssss)))) {{{{
  383.                $$$$eeeelllleeeemmmm ****==== 2222;;;;
  384.            }}}}
  385.  
  386.            ffffoooorrrr $$$$ccccoooouuuunnnntttt ((((11110000,,,,9999,,,,8888,,,,7777,,,,6666,,,,5555,,,,4444,,,,3333,,,,2222,,,,1111,,,,''''BBBBOOOOOOOOMMMM'''')))) {{{{
  387.                pppprrrriiiinnnntttt $$$$ccccoooouuuunnnntttt,,,, """"\\\\nnnn"""";;;; sssslllleeeeeeeepppp((((1111))));;;;
  388.            }}}}
  389.  
  390.            ffffoooorrrr ((((1111........11115555)))) {{{{ pppprrrriiiinnnntttt """"MMMMeeeerrrrrrrryyyy CCCChhhhrrrriiiissssttttmmmmaaaassss\\\\nnnn"""";;;; }}}}
  391.  
  392.  
  393.  
  394. 30/Jan/96                perl 5.002 with                        6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  401.  
  402.  
  403.            ffffoooorrrreeeeaaaacccchhhh $$$$iiiitttteeeemmmm ((((sssspppplllliiiitttt((((////::::[[[[\\\\\\\\\\\\nnnn::::]]]]****////,,,, $$$$EEEENNNNVVVV{{{{TTTTEEEERRRRMMMMCCCCAAAAPPPP}}}})))))))) {{{{
  404.                pppprrrriiiinnnntttt """"IIIItttteeeemmmm:::: $$$$iiiitttteeeemmmm\\\\nnnn"""";;;;
  405.            }}}}
  406.  
  407.        Here's how a C programmer might code up a particular
  408.        algorithm in Perl:
  409.  
  410.            ffffoooorrrr (((($$$$iiii ==== 0000;;;; $$$$iiii <<<< @@@@aaaarrrryyyy1111;;;; $$$$iiii++++++++)))) {{{{
  411.                ffffoooorrrr (((($$$$jjjj ==== 0000;;;; $$$$jjjj <<<< @@@@aaaarrrryyyy2222;;;; $$$$jjjj++++++++)))) {{{{
  412.                    iiiiffff (((($$$$aaaarrrryyyy1111[[[[$$$$iiii]]]] >>>> $$$$aaaarrrryyyy2222[[[[$$$$jjjj]]]])))) {{{{
  413.                        llllaaaasssstttt;;;; #### ccccaaaannnn''''tttt ggggoooo ttttoooo oooouuuutttteeeerrrr ::::----((((
  414.                    }}}}
  415.                    $$$$aaaarrrryyyy1111[[[[$$$$iiii]]]] ++++==== $$$$aaaarrrryyyy2222[[[[$$$$jjjj]]]];;;;
  416.                }}}}
  417.                #### tttthhhhiiiissss iiiissss wwwwhhhheeeerrrreeee tttthhhhaaaatttt llllaaaasssstttt ttttaaaakkkkeeeessss mmmmeeee
  418.            }}}}
  419.  
  420.        Whereas here's how a Perl programmer more confortable with
  421.        the idiom might do it:
  422.  
  423.            OOOOUUUUTTTTEEEERRRR:::: ffffoooorrrreeeeaaaacccchhhh $$$$wwwwiiiidddd ((((@@@@aaaarrrryyyy1111)))) {{{{
  424.            IIIINNNNNNNNEEEERRRR::::   ffffoooorrrreeeeaaaacccchhhh $$$$jjjjeeeetttt ((((@@@@aaaarrrryyyy2222)))) {{{{
  425.                        nnnneeeexxxxtttt OOOOUUUUTTTTEEEERRRR iiiiffff $$$$wwwwiiiidddd >>>> $$$$jjjjeeeetttt;;;;
  426.                        $$$$wwwwiiiidddd ++++==== $$$$jjjjeeeetttt;;;;
  427.                     }}}}
  428.                  }}}}
  429.  
  430.        See how much easier this is?  It's cleaner, safer, and
  431.        faster.  It's cleaner because it's less noisy.  It's safer
  432.        because if code gets added between the inner and outer
  433.        loops later on, the new code won't be accidentally
  434.        excecuted:  the nnnneeeexxxxtttt explicitly iterates the other loop
  435.        rather than merely terminating the inner one.  And it's
  436.        faster because Perl executes a ffffoooorrrreeeeaaaacccchhhh statement more
  437.        rapidly than it would the equivalent ffffoooorrrr loop.
  438.  
  439.        BBBBaaaassssiiiicccc BBBBLLLLOOOOCCCCKKKKssss aaaannnndddd SSSSwwwwiiiittttcccchhhh SSSSttttaaaatttteeeemmmmeeeennnnttttssss
  440.  
  441.        A BLOCK by itself (labeled or not) is semantically
  442.        equivalent to a loop that executes once.  Thus you can use
  443.        any of the loop control statements in it to leave or
  444.        restart the block.  (Note that this is _N_O_T true in eeeevvvvaaaallll{{{{}}}},
  445.        ssssuuuubbbb{{{{}}}}, or contrary to popular belief ddddoooo{{{{}}}} blocks, which do
  446.        _N_O_T count as loops.)  The ccccoooonnnnttttiiiinnnnuuuueeee block is optional.
  447.  
  448.        The BLOCK construct is particularly nice for doing case
  449.        structures.
  450.  
  451.            SSSSWWWWIIIITTTTCCCCHHHH:::: {{{{
  452.                iiiiffff ((((////^^^^aaaabbbbcccc////)))) {{{{ $$$$aaaabbbbcccc ==== 1111;;;; llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;; }}}}
  453.                iiiiffff ((((////^^^^ddddeeeeffff////)))) {{{{ $$$$ddddeeeeffff ==== 1111;;;; llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;; }}}}
  454.                iiiiffff ((((////^^^^xxxxyyyyzzzz////)))) {{{{ $$$$xxxxyyyyzzzz ==== 1111;;;; llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;; }}}}
  455.                $$$$nnnnooootttthhhhiiiinnnngggg ==== 1111;;;;
  456.            }}}}
  457.  
  458.  
  459.  
  460. 30/Jan/96                perl 5.002 with                        7
  461.  
  462.  
  463.  
  464.  
  465.  
  466. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  467.  
  468.  
  469.        There is no official switch statement in Perl, because
  470.        there are already several ways to write the equivalent.
  471.        In addition to the above, you could write
  472.  
  473.            SSSSWWWWIIIITTTTCCCCHHHH:::: {{{{
  474.                $$$$aaaabbbbcccc ==== 1111,,,, llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH  iiiiffff ////^^^^aaaabbbbcccc////;;;;
  475.                $$$$ddddeeeeffff ==== 1111,,,, llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH  iiiiffff ////^^^^ddddeeeeffff////;;;;
  476.                $$$$xxxxyyyyzzzz ==== 1111,,,, llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH  iiiiffff ////^^^^xxxxyyyyzzzz////;;;;
  477.                $$$$nnnnooootttthhhhiiiinnnngggg ==== 1111;;;;
  478.            }}}}
  479.  
  480.        (That's actually not as strange as it looks once you
  481.        realize that you can use loop control "operators" within
  482.        an expression,  That's just the normal C comma operator.)
  483.  
  484.        or
  485.  
  486.            SSSSWWWWIIIITTTTCCCCHHHH:::: {{{{
  487.                ////^^^^aaaabbbbcccc//// &&&&&&&& ddddoooo {{{{ $$$$aaaabbbbcccc ==== 1111;;;; llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;; }}}};;;;
  488.                ////^^^^ddddeeeeffff//// &&&&&&&& ddddoooo {{{{ $$$$ddddeeeeffff ==== 1111;;;; llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;; }}}};;;;
  489.                ////^^^^xxxxyyyyzzzz//// &&&&&&&& ddddoooo {{{{ $$$$xxxxyyyyzzzz ==== 1111;;;; llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;; }}}};;;;
  490.                $$$$nnnnooootttthhhhiiiinnnngggg ==== 1111;;;;
  491.            }}}}
  492.  
  493.        or formatted so it stands out more as a "proper" switch
  494.        statement:
  495.  
  496.            SSSSWWWWIIIITTTTCCCCHHHH:::: {{{{
  497.                ////^^^^aaaabbbbcccc////      &&&&&&&& ddddoooo {{{{
  498.                                    $$$$aaaabbbbcccc ==== 1111;;;;
  499.                                    llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;;
  500.                               }}}};;;;
  501.  
  502.                ////^^^^ddddeeeeffff////      &&&&&&&& ddddoooo {{{{
  503.                                    $$$$ddddeeeeffff ==== 1111;;;;
  504.                                    llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;;
  505.                               }}}};;;;
  506.  
  507.                ////^^^^xxxxyyyyzzzz////      &&&&&&&& ddddoooo {{{{
  508.                                    $$$$xxxxyyyyzzzz ==== 1111;;;;
  509.                                    llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;;
  510.                                }}}};;;;
  511.                $$$$nnnnooootttthhhhiiiinnnngggg ==== 1111;;;;
  512.            }}}}
  513.  
  514.        or
  515.  
  516.            SSSSWWWWIIIITTTTCCCCHHHH:::: {{{{
  517.                ////^^^^aaaabbbbcccc//// aaaannnndddd $$$$aaaabbbbcccc ==== 1111,,,, llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;;
  518.                ////^^^^ddddeeeeffff//// aaaannnndddd $$$$ddddeeeeffff ==== 1111,,,, llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;;
  519.                ////^^^^xxxxyyyyzzzz//// aaaannnndddd $$$$xxxxyyyyzzzz ==== 1111,,,, llllaaaasssstttt SSSSWWWWIIIITTTTCCCCHHHH;;;;
  520.                $$$$nnnnooootttthhhhiiiinnnngggg ==== 1111;;;;
  521.            }}}}
  522.  
  523.  
  524.  
  525.  
  526. 30/Jan/96                perl 5.002 with                        8
  527.  
  528.  
  529.  
  530.  
  531.  
  532. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  533.  
  534.  
  535.        or even, horrors,
  536.  
  537.            iiiiffff ((((////^^^^aaaabbbbcccc////))))
  538.                {{{{ $$$$aaaabbbbcccc ==== 1111 }}}}
  539.            eeeellllssssiiiiffff ((((////^^^^ddddeeeeffff////))))
  540.                {{{{ $$$$ddddeeeeffff ==== 1111 }}}}
  541.            eeeellllssssiiiiffff ((((////^^^^xxxxyyyyzzzz////))))
  542.                {{{{ $$$$xxxxyyyyzzzz ==== 1111 }}}}
  543.            eeeellllsssseeee
  544.                {{{{ $$$$nnnnooootttthhhhiiiinnnngggg ==== 1111 }}}}
  545.  
  546.        A common idiom for a switch statement is to use ffffoooorrrreeeeaaaacccchhhh's
  547.        aliasing to make a temporary assignment to $$$$____ for
  548.        convenient matching:
  549.  
  550.            SSSSWWWWIIIITTTTCCCCHHHH:::: ffffoooorrrr (((($$$$wwwwhhhheeeerrrreeee)))) {{{{
  551.                        ////IIIInnnn CCCCaaaarrrrdddd NNNNaaaammmmeeeessss////     &&&&&&&& ddddoooo {{{{ ppppuuuusssshhhh @@@@ffffllllaaaaggggssss,,,, ''''----eeee'''';;;; llllaaaasssstttt;;;; }}}};;;;
  552.                        ////AAAAnnnnyyyywwwwhhhheeeerrrreeee////          &&&&&&&& ddddoooo {{{{ ppppuuuusssshhhh @@@@ffffllllaaaaggggssss,,,, ''''----hhhh'''';;;; llllaaaasssstttt;;;; }}}};;;;
  553.                        ////IIIInnnn RRRRuuuulllliiiinnnnggggssss////        &&&&&&&& ddddoooo {{{{                    llllaaaasssstttt;;;; }}}};;;;
  554.                        ddddiiiieeee """"uuuunnnnkkkknnnnoooowwwwnnnn vvvvaaaalllluuuueeee ffffoooorrrr ffffoooorrrrmmmm vvvvaaaarrrriiiiaaaabbbblllleeee wwwwhhhheeeerrrreeee:::: ````$$$$wwwwhhhheeeerrrreeee''''"""";;;;
  555.                    }}}}
  556.  
  557.        Another interesting approach to a switch statement is
  558.        arrange for a ddddoooo block to return the proper value:
  559.  
  560.            $$$$aaaammmmooooddddeeee ==== ddddoooo {{{{
  561.                iiiiffff     (((($$$$ffffllllaaaagggg &&&& OOOO____RRRRDDDDOOOONNNNLLLLYYYY)))) {{{{ """"rrrr"""" }}}}
  562.                eeeellllssssiiiiffff  (((($$$$ffffllllaaaagggg &&&& OOOO____WWWWRRRROOOONNNNLLLLYYYY)))) {{{{ (((($$$$ffffllllaaaagggg &&&& OOOO____AAAAPPPPPPPPEEEENNNNDDDD)))) ???? """"aaaa"""" :::: """"wwww"""" }}}}
  563.                eeeellllssssiiiiffff  (((($$$$ffffllllaaaagggg &&&& OOOO____RRRRDDDDWWWWRRRR))))   {{{{
  564.                    iiiiffff (((($$$$ffffllllaaaagggg &&&& OOOO____CCCCRRRREEEEAAAATTTT))))  {{{{ """"wwww++++"""" }}}}
  565.                    eeeellllsssseeee                  {{{{ (((($$$$ffffllllaaaagggg &&&& OOOO____AAAAPPPPPPPPEEEENNNNDDDD)))) ???? """"aaaa++++"""" :::: """"rrrr++++"""" }}}}
  566.                }}}}
  567.            }}}};;;;
  568.  
  569.  
  570.        GGGGoooottttoooo
  571.  
  572.        Although not for the faint of heart, Perl does support a
  573.        ggggoooottttoooo statement.  A loop's LABEL is not actually a valid
  574.        target for a ggggoooottttoooo; it's just the name of the loop.  There
  575.        are three forms: goto-LABEL, goto-EXPR, and goto-&NAME.
  576.  
  577.        The goto-LABEL form finds the statement labeled with LABEL
  578.        and resumes execution there.  It may not be used to go
  579.        into any construct that requires initialization, such as a
  580.        subroutine or a foreach loop.  It also can't be used to go
  581.        into a construct that is optimized away.  It can be used
  582.        to go almost anywhere else within the dynamic scope,
  583.        including out of subroutines, but it's usually better to
  584.        use some other construct such as last or die.  The author
  585.        of Perl has never felt the need to use this form of goto
  586.        (in Perl, that is--C is another matter).
  587.  
  588.        The goto-EXPR form expects a label name, whose scope will
  589.  
  590.  
  591.  
  592. 30/Jan/96                perl 5.002 with                        9
  593.  
  594.  
  595.  
  596.  
  597.  
  598. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  599.  
  600.  
  601.        be resolved dynamically.  This allows for computed gotos
  602.        per FORTRAN, but isn't necessarily recommended if you're
  603.        optimizing for maintainability:
  604.  
  605.            ggggoooottttoooo ((((""""FFFFOOOOOOOO"""",,,, """"BBBBAAAARRRR"""",,,, """"GGGGLLLLAAAARRRRCCCCHHHH""""))))[[[[$$$$iiii]]]];;;;
  606.  
  607.        The goto-&NAME form is highly magical, and substitutes a
  608.        call to the named subroutine for the currently running
  609.        subroutine.  This is used by _A_U_T_O_L_O_A_D_(_) subroutines that
  610.        wish to load another subroutine and then pretend that the
  611.        other subroutine had been called in the first place
  612.        (except that any modifications to @@@@____ in the current
  613.        subroutine are propagated to the other subroutine.)  After
  614.        the ggggoooottttoooo, not even _c_a_l_l_e_r_(_) will be able to tell that this
  615.        routine was called first.
  616.  
  617.        In almost all cases like this, it's usually a far, far
  618.        better idea to use the structured control flow mechanisms
  619.        of nnnneeeexxxxtttt, llllaaaasssstttt, or rrrreeeeddddoooo instead of resorting to a ggggoooottttoooo.
  620.        For certain applications, the catch and throw pair of
  621.        eeeevvvvaaaallll{{{{}}}} and _d_i_e_(_) for exception processing can also be a
  622.        prudent approach.
  623.  
  624.        PPPPOOOODDDDssss:::: EEEEmmmmbbbbeeeeddddddddeeeedddd DDDDooooccccuuuummmmeeeennnnttttaaaattttiiiioooonnnn
  625.  
  626.        Perl has a mechanism for intermixing documentation with
  627.        source code.  While it's expecting the beginning of a new
  628.        statement, if the compiler encounters a line that begins
  629.        with an equal sign and a word, like this
  630.  
  631.            ====hhhheeeeaaaadddd1111 HHHHeeeerrrreeee TTTThhhheeeerrrreeee BBBBeeee PPPPooooddddssss!!!!
  632.  
  633.        Then that text and all remaining text up through and
  634.        including a line beginning with ====ccccuuuutttt will be ignored.  The
  635.        format of the intervening text is described in the _p_e_r_l_p_o_d
  636.        manpage.
  637.  
  638.        This allows you to intermix your source code and your
  639.        documentation text freely, as in
  640.  
  641.            ====iiiitttteeeemmmm ssssnnnnaaaazzzzzzzzlllleeee(((($$$$))))
  642.  
  643.            TTTThhhheeee ssssnnnnaaaazzzzzzzzlllleeee(((()))) ffffuuuunnnnccccttttiiiioooonnnn wwwwiiiillllllll bbbbeeeehhhhaaaavvvveeee iiiinnnn tttthhhheeee mmmmoooosssstttt ssssppppeeeeccccttttaaaaccccuuuullllaaaarrrr
  644.            ffffoooorrrrmmmm tttthhhhaaaatttt yyyyoooouuuu ccccaaaannnn ppppoooossssssssiiiibbbbllllyyyy iiiimmmmaaaaggggiiiinnnneeee,,,, nnnnooootttt eeeevvvveeeennnn eeeexxxxcccceeeeppppttttiiiinnnngggg
  645.            ccccyyyybbbbeeeerrrrnnnneeeettttiiiicccc ppppyyyyrrrrooootttteeeecccchhhhnnnniiiiccccssss....
  646.  
  647.            ====ccccuuuutttt bbbbaaaacccckkkk ttttoooo tttthhhheeee ccccoooommmmppppiiiilllleeeerrrr,,,, nnnnuuuuffffffff ooooffff tttthhhhiiiissss ppppoooodddd ssssttttuuuuffffffff!!!!
  648.  
  649.            ssssuuuubbbb ssssnnnnaaaazzzzzzzzlllleeee(((($$$$)))) {{{{
  650.                mmmmyyyy $$$$tttthhhhiiiinnnnggggiiiieeee ==== sssshhhhiiiifffftttt;;;;
  651.                ....................................
  652.            }}}}
  653.  
  654.        Note that pod translators should only look at paragraphs
  655.  
  656.  
  657.  
  658. 30/Jan/96                perl 5.002 with                       10
  659.  
  660.  
  661.  
  662.  
  663.  
  664. PERLSYN(1)     User Contributed Perl Documentation     PERLSYN(1)
  665.  
  666.  
  667.        beginning with a pod diretive (it makes parsing easier),
  668.        whereas the compiler actually knows to look for pod
  669.        escapes even in the middle of a paragraph.  This means
  670.        that the following secret stuff will be ignored by both
  671.        the compiler and the translators.
  672.  
  673.            $$$$aaaa====3333;;;;
  674.            ====sssseeeeccccrrrreeeetttt ssssttttuuuuffffffff
  675.             wwwwaaaarrrrnnnn """"NNNNeeeeiiiitttthhhheeeerrrr PPPPOOOODDDD nnnnoooorrrr CCCCOOOODDDDEEEE!!!!????""""
  676.            ====ccccuuuutttt bbbbaaaacccckkkk
  677.            pppprrrriiiinnnntttt """"ggggooootttt $$$$aaaa\\\\nnnn"""";;;;
  678.  
  679.        You probably shouldn't rely upon the _w_a_r_n_(_) being podded
  680.        out forever.  Not all pod translators are well-behaved in
  681.        this regard, and perhaps the compiler will become pickier.
  682.  
  683.  
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700.  
  701.  
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710.  
  711.  
  712.  
  713.  
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724. 30/Jan/96                perl 5.002 with                       11
  725.  
  726.  
  727.