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 / perllol.0 < prev    next >
Text File  |  1996-03-02  |  24KB  |  463 lines

  1.  
  2.  
  3.  
  4. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  5.  
  6.  
  7. NNNNAAAAMMMMEEEE
  8.        perlLoL - Manipulating Lists of Lists in Perl
  9.  
  10. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  11. DDDDeeeeccccllllaaaarrrraaaattttiiiioooonnnn aaaannnndddd AAAAcccccccceeeessssssss ooooffff LLLLiiiissssttttssss ooooffff LLLLiiiissssttttssss
  12.        The simplest thing to build is a list of lists (sometimes
  13.        called an array of arrays).  It's reasonably easy to
  14.        understand, and almost everything that applies here will
  15.        also be applicable later on with the fancier data
  16.        structures.
  17.  
  18.        A list of lists, or an array of an array if you would, is
  19.        just a regular old array @@@@LLLLooooLLLL that you can get at with two
  20.        subscripts, like $$$$LLLLooooLLLL[3][2].  Here's a declaration of the
  21.        array:
  22.  
  23.            #### aaaassssssssiiiiggggnnnn ttttoooo oooouuuurrrr aaaarrrrrrrraaaayyyy aaaa lllliiiisssstttt ooooffff lllliiiisssstttt rrrreeeeffffeeeerrrreeeennnncccceeeessss
  24.            @@@@LLLLooooLLLL ==== ((((
  25.                   [[[[ """"ffffrrrreeeedddd"""",,,, """"bbbbaaaarrrrnnnneeeeyyyy"""" ]]]],,,,
  26.                   [[[[ """"ggggeeeeoooorrrrggggeeee"""",,,, """"jjjjaaaannnneeee"""",,,, """"eeeellllrrrrooooyyyy"""" ]]]],,,,
  27.                   [[[[ """"hhhhoooommmmeeeerrrr"""",,,, """"mmmmaaaarrrrggggeeee"""",,,, """"bbbbaaaarrrrtttt"""" ]]]],,,,
  28.            ))));;;;
  29.  
  30.            pppprrrriiiinnnntttt $$$$LLLLooooLLLL[[[[2222]]]][[[[2222]]]];;;;
  31.          bbbbaaaarrrrtttt
  32.  
  33.        Now you should be very careful that the outer bracket type
  34.        is a round one, that is, parentheses.  That's because
  35.        you're assigning to an @@@@lllliiiisssstttt, so you need parens.  If you
  36.        wanted there _n_o_t to be an @@@@LLLLooooLLLL, but rather just a
  37.        reference to it, you could do something more like this:
  38.  
  39.            #### aaaassssssssiiiiggggnnnn aaaa rrrreeeeffffeeeerrrreeeennnncccceeee ttttoooo lllliiiisssstttt ooooffff lllliiiisssstttt rrrreeeeffffeeeerrrreeeennnncccceeeessss
  40.            $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL ==== [[[[
  41.                [[[[ """"ffffrrrreeeedddd"""",,,, """"bbbbaaaarrrrnnnneeeeyyyy"""",,,, """"ppppeeeebbbbbbbblllleeeessss"""",,,, """"bbbbaaaammmmbbbbaaaammmm"""",,,, """"ddddiiiinnnnoooo"""",,,, ]]]],,,,
  42.                [[[[ """"hhhhoooommmmeeeerrrr"""",,,, """"bbbbaaaarrrrtttt"""",,,, """"mmmmaaaarrrrggggeeee"""",,,, """"mmmmaaaaggggggggiiiieeee"""",,,, ]]]],,,,
  43.                [[[[ """"ggggeeeeoooorrrrggggeeee"""",,,, """"jjjjaaaannnneeee"""",,,, """"aaaallllrrrrooooyyyy"""",,,, """"jjjjuuuuddddyyyy"""",,,, ]]]],,,,
  44.            ]]]];;;;
  45.  
  46.            pppprrrriiiinnnntttt $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL---->>>>[[[[2222]]]][[[[2222]]]];;;;
  47.  
  48.        Notice that the outer bracket type has changed, and so our
  49.        access syntax has also changed.  That's because unlike C,
  50.        in perl you can't freely interchange arrays and references
  51.        thereto.  $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL is a reference to an array, whereas
  52.        @@@@LLLLooooLLLL is an array proper.  Likewise, $$$$LLLLooooLLLL[2] is not an
  53.        array, but an array ref.  So how come you can write these:
  54.  
  55.            $$$$LLLLooooLLLL[[[[2222]]]][[[[2222]]]]
  56.            $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL---->>>>[[[[2222]]]][[[[2222]]]]
  57.  
  58.        instead of having to write these:
  59.  
  60.  
  61.  
  62.  
  63.  
  64. 23/Jan/96                perl 5.002 with                        1
  65.  
  66.  
  67.  
  68.  
  69.  
  70. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  71.  
  72.  
  73.            $$$$LLLLooooLLLL[[[[2222]]]]---->>>>[[[[2222]]]]
  74.            $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL---->>>>[[[[2222]]]]---->>>>[[[[2222]]]]
  75.  
  76.        Well, that's because the rule is that on adjacent brackets
  77.        only (whether square or curly), you are free to omit the
  78.        pointer dereferencing array.  But you need not do so for
  79.        the very first one if it's a scalar containing a
  80.        reference, which means that $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL always needs it.
  81.  
  82. GGGGrrrroooowwwwiiiinnnngggg YYYYoooouuuurrrr OOOOwwwwnnnn
  83.        That's all well and good for declaration of a fixed data
  84.        structure, but what if you wanted to add new elements on
  85.        the fly, or build it up entirely from scratch?
  86.  
  87.        First, let's look at reading it in from a file.  This is
  88.        something like adding a row at a time.  We'll assume that
  89.        there's a flat file in which each line is a row and each
  90.        word an element.  If you're trying to develop an @@@@LLLLooooLLLL list
  91.        containing all these, here's the right way to do that:
  92.  
  93.            wwwwhhhhiiiilllleeee ((((<<<<>>>>)))) {{{{
  94.                @@@@ttttmmmmpppp ==== sssspppplllliiiitttt;;;;
  95.                ppppuuuusssshhhh @@@@LLLLooooLLLL,,,, [[[[ @@@@ttttmmmmpppp ]]]];;;;
  96.            }}}}
  97.  
  98.        You might also have loaded that from a function:
  99.  
  100.            ffffoooorrrr $$$$iiii (((( 1111 ........ 11110000 )))) {{{{
  101.                $$$$LLLLooooLLLL[[[[$$$$iiii]]]] ==== [[[[ ssssoooommmmeeeeffffuuuunnnncccc(((($$$$iiii)))) ]]]];;;;
  102.            }}}}
  103.  
  104.        Or you might have had a temporary variable sitting around
  105.        with the list in it.
  106.  
  107.            ffffoooorrrr $$$$iiii (((( 1111 ........ 11110000 )))) {{{{
  108.                @@@@ttttmmmmpppp ==== ssssoooommmmeeeeffffuuuunnnncccc(((($$$$iiii))));;;;
  109.                $$$$LLLLooooLLLL[[[[$$$$iiii]]]] ==== [[[[ @@@@ttttmmmmpppp ]]]];;;;
  110.            }}}}
  111.  
  112.        It's very important that you make sure to use the [[[[]]]] list
  113.        reference constructor.  That's because this will be very
  114.        wrong:
  115.  
  116.            $$$$LLLLooooLLLL[[[[$$$$iiii]]]] ==== @@@@ttttmmmmpppp;;;;
  117.  
  118.        You see, assigning a named list like that to a scalar just
  119.        counts the number of elements in @@@@ttttmmmmpppp, which probably
  120.        isn't what you want.
  121.  
  122.        If you are running under uuuusssseeee ssssttttrrrriiiicccctttt, you'll have to add
  123.        some declarations to make it happy:
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130. 23/Jan/96                perl 5.002 with                        2
  131.  
  132.  
  133.  
  134.  
  135.  
  136. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  137.  
  138.  
  139.            uuuusssseeee ssssttttrrrriiiicccctttt;;;;
  140.            mmmmyyyy((((@@@@LLLLooooLLLL,,,, @@@@ttttmmmmpppp))));;;;
  141.            wwwwhhhhiiiilllleeee ((((<<<<>>>>)))) {{{{
  142.                @@@@ttttmmmmpppp ==== sssspppplllliiiitttt;;;;
  143.                ppppuuuusssshhhh @@@@LLLLooooLLLL,,,, [[[[ @@@@ttttmmmmpppp ]]]];;;;
  144.            }}}}
  145.  
  146.        Of course, you don't need the temporary array to have a
  147.        name at all:
  148.  
  149.            wwwwhhhhiiiilllleeee ((((<<<<>>>>)))) {{{{
  150.                ppppuuuusssshhhh @@@@LLLLooooLLLL,,,, [[[[ sssspppplllliiiitttt ]]]];;;;
  151.            }}}}
  152.  
  153.        You also don't have to use _p_u_s_h_(_).  You could just make a
  154.        direct assignment if you knew where you wanted to put it:
  155.  
  156.            mmmmyyyy ((((@@@@LLLLooooLLLL,,,, $$$$iiii,,,, $$$$lllliiiinnnneeee))));;;;
  157.            ffffoooorrrr $$$$iiii (((( 0000 ........ 11110000 ))))
  158.                $$$$lllliiiinnnneeee ==== <<<<>>>>;;;;
  159.                $$$$LLLLooooLLLL[[[[$$$$iiii]]]] ==== [[[[ sssspppplllliiiitttt '''' '''',,,, $$$$lllliiiinnnneeee ]]]];;;;
  160.            }}}}
  161.  
  162.        or even just
  163.  
  164.            mmmmyyyy ((((@@@@LLLLooooLLLL,,,, $$$$iiii))));;;;
  165.            ffffoooorrrr $$$$iiii (((( 0000 ........ 11110000 ))))
  166.                $$$$LLLLooooLLLL[[[[$$$$iiii]]]] ==== [[[[ sssspppplllliiiitttt '''' '''',,,, <<<<>>>> ]]]];;;;
  167.            }}}}
  168.  
  169.        You should in general be leary of using potential list
  170.        functions in a scalar context without explicitly stating
  171.        such.  This would be clearer to the casual reader:
  172.  
  173.            mmmmyyyy ((((@@@@LLLLooooLLLL,,,, $$$$iiii))));;;;
  174.            ffffoooorrrr $$$$iiii (((( 0000 ........ 11110000 ))))
  175.                $$$$LLLLooooLLLL[[[[$$$$iiii]]]] ==== [[[[ sssspppplllliiiitttt '''' '''',,,, ssssccccaaaallllaaaarrrr((((<<<<>>>>)))) ]]]];;;;
  176.            }}}}
  177.  
  178.        If you wanted to have a $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL variable as a
  179.        reference to an array, you'd have to do something like
  180.        this:
  181.  
  182.            wwwwhhhhiiiilllleeee ((((<<<<>>>>)))) {{{{
  183.                ppppuuuusssshhhh @@@@$$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL,,,, [[[[ sssspppplllliiiitttt ]]]];;;;
  184.            }}}}
  185.  
  186.        Actually, if you were using strict, you'd not only have to
  187.        declare $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL as you had to declare @@@@LLLLooooLLLL, but you'd
  188.        _a_l_s_o having to initialize it to a reference to an empty
  189.        list.  (This was a bug in 5.001m that's been fixed for the
  190.        5.002 release.)
  191.  
  192.  
  193.  
  194.  
  195.  
  196. 23/Jan/96                perl 5.002 with                        3
  197.  
  198.  
  199.  
  200.  
  201.  
  202. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  203.  
  204.  
  205.            mmmmyyyy $$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL ==== [[[[]]]];;;;
  206.            wwwwhhhhiiiilllleeee ((((<<<<>>>>)))) {{{{
  207.                ppppuuuusssshhhh @@@@$$$$rrrreeeeffff____ttttoooo____LLLLooooLLLL,,,, [[[[ sssspppplllliiiitttt ]]]];;;;
  208.            }}}}
  209.  
  210.        Ok, now you can add new rows.  What about adding new
  211.        columns?  If you're just dealing with matrices, it's often
  212.        easiest to use simple assignment:
  213.  
  214.            ffffoooorrrr $$$$xxxx ((((1111 ........ 11110000)))) {{{{
  215.                ffffoooorrrr $$$$yyyy ((((1111 ........ 11110000)))) {{{{
  216.                    $$$$LLLLooooLLLL[[[[$$$$xxxx]]]][[[[$$$$yyyy]]]] ==== ffffuuuunnnncccc(((($$$$xxxx,,,, $$$$yyyy))));;;;
  217.                }}}}
  218.            }}}}
  219.  
  220.            ffffoooorrrr $$$$xxxx (((( 3333,,,, 7777,,,, 9999 )))) {{{{
  221.                $$$$LLLLooooLLLL[[[[$$$$xxxx]]]][[[[22220000]]]] ++++==== ffffuuuunnnncccc2222(((($$$$xxxx))));;;;
  222.            }}}}
  223.  
  224.        It doesn't matter whether those elements are already there
  225.        or not: it'll gladly create them for you, setting
  226.        intervening elements to uuuunnnnddddeeeeffff as need be.
  227.  
  228.        If you just wanted to append to a row, you'd have to do
  229.        something a bit funnier looking:
  230.  
  231.            #### aaaadddddddd nnnneeeewwww ccccoooolllluuuummmmnnnnssss ttttoooo aaaannnn eeeexxxxiiiissssttttiiiinnnngggg rrrroooowwww
  232.            ppppuuuusssshhhh @@@@{{{{ $$$$LLLLooooLLLL[[[[0000]]]] }}}},,,, """"wwwwiiiillllmmmmaaaa"""",,,, """"bbbbeeeettttttttyyyy"""";;;;
  233.  
  234.        Notice that I _c_o_u_l_d_n_'_t just say:
  235.  
  236.            ppppuuuusssshhhh $$$$LLLLooooLLLL[[[[0000]]]],,,, """"wwwwiiiillllmmmmaaaa"""",,,, """"bbbbeeeettttttttyyyy"""";;;;  #### WWWWRRRROOOONNNNGGGG!!!!
  237.  
  238.        In fact, that wouldn't even compile.  How come?  Because
  239.        the argument to _p_u_s_h_(_) must be a real array, not just a
  240.        reference to such.
  241.  
  242. AAAAcccccccceeeessssssss aaaannnndddd PPPPrrrriiiinnnnttttiiiinnnngggg
  243.        Now it's time to print your data structure out.  How are
  244.        you going to do that?  Well, if you only want one of the
  245.        elements, it's trivial:
  246.  
  247.            pppprrrriiiinnnntttt $$$$LLLLooooLLLL[[[[0000]]]][[[[0000]]]];;;;
  248.  
  249.        If you want to print the whole thing, though, you can't
  250.        just say
  251.  
  252.            pppprrrriiiinnnntttt @@@@LLLLooooLLLL;;;;         #### WWWWRRRROOOONNNNGGGG
  253.  
  254.        because you'll just get references listed, and perl will
  255.        never automatically dereference things for you.  Instead,
  256.        you have to roll yourself a loop or two.  This prints the
  257.        whole structure, using the shell-style _f_o_r_(_) construct to
  258.        loop across the outer set of subscripts.
  259.  
  260.  
  261.  
  262. 23/Jan/96                perl 5.002 with                        4
  263.  
  264.  
  265.  
  266.  
  267.  
  268. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  269.  
  270.  
  271.            ffffoooorrrr $$$$aaaarrrreeeeffff (((( @@@@LLLLooooLLLL )))) {{{{
  272.                pppprrrriiiinnnntttt """"\\\\tttt [[[[ @@@@$$$$aaaarrrreeeeffff ]]]],,,,\\\\nnnn"""";;;;
  273.            }}}}
  274.  
  275.        If you wanted to keep track of subscripts, you might do
  276.        this:
  277.  
  278.            ffffoooorrrr $$$$iiii (((( 0000 ........ $$$$####LLLLooooLLLL )))) {{{{
  279.                pppprrrriiiinnnntttt """"\\\\tttt eeeelllltttt $$$$iiii iiiissss [[[[ @@@@{{{{$$$$LLLLooooLLLL[[[[$$$$iiii]]]]}}}} ]]]],,,,\\\\nnnn"""";;;;
  280.            }}}}
  281.  
  282.        or maybe even this.  Notice the inner loop.
  283.  
  284.            ffffoooorrrr $$$$iiii (((( 0000 ........ $$$$####LLLLooooLLLL )))) {{{{
  285.                ffffoooorrrr $$$$jjjj (((( 0000 ........ $$$$####{{{{$$$$LLLLooooLLLL[[[[$$$$iiii]]]]}}}} )))) {{{{
  286.                    pppprrrriiiinnnntttt """"eeeelllltttt $$$$iiii $$$$jjjj iiiissss $$$$LLLLooooLLLL[[[[$$$$iiii]]]][[[[$$$$jjjj]]]]\\\\nnnn"""";;;;
  287.                }}}}
  288.            }}}}
  289.  
  290.        As you can see, it's getting a bit complicated.  That's
  291.        why sometimes is easier to take a temporary on your way
  292.        through:
  293.  
  294.            ffffoooorrrr $$$$iiii (((( 0000 ........ $$$$####LLLLooooLLLL )))) {{{{
  295.                $$$$aaaarrrreeeeffff ==== $$$$LLLLooooLLLL[[[[$$$$iiii]]]];;;;
  296.                ffffoooorrrr $$$$jjjj (((( 0000 ........ $$$$####{{{{$$$$aaaarrrreeeeffff}}}} )))) {{{{
  297.                    pppprrrriiiinnnntttt """"eeeelllltttt $$$$iiii $$$$jjjj iiiissss $$$$LLLLooooLLLL[[[[$$$$iiii]]]][[[[$$$$jjjj]]]]\\\\nnnn"""";;;;
  298.                }}}}
  299.            }}}}
  300.  
  301.        Hm... that's still a bit ugly.  How about this:
  302.  
  303.            ffffoooorrrr $$$$iiii (((( 0000 ........ $$$$####LLLLooooLLLL )))) {{{{
  304.                $$$$aaaarrrreeeeffff ==== $$$$LLLLooooLLLL[[[[$$$$iiii]]]];;;;
  305.                $$$$nnnn ==== @@@@$$$$aaaarrrreeeeffff ---- 1111;;;;
  306.                ffffoooorrrr $$$$jjjj (((( 0000 ........ $$$$nnnn )))) {{{{
  307.                    pppprrrriiiinnnntttt """"eeeelllltttt $$$$iiii $$$$jjjj iiiissss $$$$LLLLooooLLLL[[[[$$$$iiii]]]][[[[$$$$jjjj]]]]\\\\nnnn"""";;;;
  308.                }}}}
  309.            }}}}
  310.  
  311.  
  312. SSSSlllliiiicccceeeessss
  313.        If you want to get at a slide (part of a row) in a
  314.        multidimensional array, you're going to have to do some
  315.        fancy subscripting.  That's because while we have a nice
  316.        synonym for single elements via the pointer arrow for
  317.        dereferencing, no such convenience exists for slices.
  318.        (Remember, of course, that you can always write a loop to
  319.        do a slice operation.)
  320.  
  321.        Here's how to do one operation using a loop.  We'll assume
  322.        an @@@@LLLLooooLLLL variable as before.
  323.  
  324.  
  325.  
  326.  
  327.  
  328. 23/Jan/96                perl 5.002 with                        5
  329.  
  330.  
  331.  
  332.  
  333.  
  334. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  335.  
  336.  
  337.            @@@@ppppaaaarrrrtttt ==== (((())));;;;
  338.            $$$$xxxx ==== 4444;;;;
  339.            ffffoooorrrr (((($$$$yyyy ==== 7777;;;; $$$$yyyy <<<< 11113333;;;; $$$$yyyy++++++++)))) {{{{
  340.                ppppuuuusssshhhh @@@@ppppaaaarrrrtttt,,,, $$$$LLLLooooLLLL[[[[$$$$xxxx]]]][[[[$$$$yyyy]]]];;;;
  341.            }}}}
  342.  
  343.        That same loop could be replaced with a slice operation:
  344.  
  345.            @@@@ppppaaaarrrrtttt ==== @@@@{{{{ $$$$LLLLooooLLLL[[[[4444]]]] }}}} [[[[ 7777........11112222 ]]]];;;;
  346.  
  347.        but as you might well imagine, this is pretty rough on the
  348.        reader.
  349.  
  350.        Ah, but what if you wanted a _t_w_o_-_d_i_m_e_n_s_i_o_n_a_l _s_l_i_c_e, such
  351.        as having $$$$xxxx run from 4..8 and $$$$yyyy run from 7 to 12?  Hm...
  352.        here's the simple way:
  353.  
  354.            @@@@nnnneeeewwwwLLLLooooLLLL ==== (((())));;;;
  355.            ffffoooorrrr (((($$$$ssssttttaaaarrrrttttxxxx ==== $$$$xxxx ==== 4444;;;; $$$$xxxx <<<<==== 8888;;;; $$$$xxxx++++++++)))) {{{{
  356.                ffffoooorrrr (((($$$$ssssttttaaaarrrrttttyyyy ==== $$$$yyyy ==== 7777;;;; $$$$xxxx <<<<==== 11112222;;;; $$$$yyyy++++++++)))) {{{{
  357.                    $$$$nnnneeeewwwwLLLLooooLLLL[[[[$$$$xxxx ---- $$$$ssssttttaaaarrrrttttxxxx]]]][[[[$$$$yyyy ---- $$$$ssssttttaaaarrrrttttyyyy]]]] ==== $$$$LLLLooooLLLL[[[[$$$$xxxx]]]][[[[$$$$yyyy]]]];;;;
  358.                }}}}
  359.            }}}}
  360.  
  361.        We can reduce some of the looping through slices
  362.  
  363.            ffffoooorrrr (((($$$$xxxx ==== 4444;;;; $$$$xxxx <<<<==== 8888;;;; $$$$xxxx++++++++)))) {{{{
  364.                ppppuuuusssshhhh @@@@nnnneeeewwwwLLLLooooLLLL,,,, [[[[ @@@@{{{{ $$$$LLLLooooLLLL[[[[$$$$xxxx]]]] }}}} [[[[ 7777........11112222 ]]]] ]]]];;;;
  365.            }}}}
  366.  
  367.        If you were into Schwartzian Transforms, you would
  368.        probably have selected map for that
  369.  
  370.            @@@@nnnneeeewwwwLLLLooooLLLL ==== mmmmaaaapppp {{{{ [[[[ @@@@{{{{ $$$$LLLLooooLLLL[[[[$$$$____]]]] }}}} [[[[ 7777........11112222 ]]]] ]]]] }}}} 4444 ........ 8888;;;;
  371.  
  372.        Although if your manager accused of seeking job security
  373.        (or rapid insecurity) through inscrutable code, it would
  374.        be hard to argue. :-) If I were you, I'd put that in a
  375.        function:
  376.  
  377.            @@@@nnnneeeewwwwLLLLooooLLLL ==== sssspppplllliiiicccceeee____2222DDDD(((( \\\\@@@@LLLLooooLLLL,,,, 4444 ====>>>> 8888,,,, 7777 ====>>>> 11112222 ))));;;;
  378.            ssssuuuubbbb sssspppplllliiiicccceeee____2222DDDD {{{{
  379.                mmmmyyyy $$$$llllrrrrrrrr ==== sssshhhhiiiifffftttt;;;;        #### rrrreeeeffff ttttoooo lllliiiisssstttt ooooffff lllliiiisssstttt rrrreeeeffffssss!!!!
  380.                mmmmyyyy (((($$$$xxxx____lllloooo,,,, $$$$xxxx____hhhhiiii,,,,
  381.                    $$$$yyyy____lllloooo,,,, $$$$yyyy____hhhhiiii)))) ==== @@@@____;;;;
  382.  
  383.                rrrreeeettttuuuurrrrnnnn mmmmaaaapppp {{{{
  384.                    [[[[ @@@@{{{{ $$$$llllrrrrrrrr---->>>>[[[[$$$$____]]]] }}}} [[[[ $$$$yyyy____lllloooo ........ $$$$yyyy____hhhhiiii ]]]] ]]]]
  385.                }}}} $$$$xxxx____lllloooo ........ $$$$xxxx____hhhhiiii;;;;
  386.            }}}}
  387.  
  388.  
  389. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  390.        _p_e_r_l_d_a_t_a(1), _p_e_r_l_r_e_f(1), _p_e_r_l_d_s_c(1)
  391.  
  392.  
  393.  
  394. 23/Jan/96                perl 5.002 with                        6
  395.  
  396.  
  397.  
  398.  
  399.  
  400. PERLLOL(1)     User Contributed Perl Documentation     PERLLOL(1)
  401.  
  402.  
  403. AAAAUUUUTTTTHHHHOOOORRRR
  404.        Tom Christiansen <tchrist@perl.com>
  405.  
  406.        Last udpate: Sat Oct  7 19:35:26 MDT 1995
  407.  
  408.  
  409.  
  410.  
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417.  
  418.  
  419.  
  420.  
  421.  
  422.  
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450.  
  451.  
  452.  
  453.  
  454.  
  455.  
  456.  
  457.  
  458.  
  459.  
  460. 23/Jan/96                perl 5.002 with                        7
  461.  
  462.  
  463.