Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Aliasing bites

by Zaxo (Archbishop)
on May 11, 2005 at 07:44 UTC ( [id://455882]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my ($foo,$bar,$baz,$i);
    for my $quux ($foo, $bar, $baz) {
        $quux = $i++;
    ...
    print "$foo $bar $baz\n";
    __END__
    0 1 2
    
  2. or download this
    sub wibble {
        return unless @_ > 2;
        my ($string, $position, $count) =
            map { alias } @_;
        # . . .
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://455882]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (8)
As of 2024-03-28 09:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found