Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: What is %_

by guice (Scribe)
on May 16, 2000 at 02:25 UTC ( [id://11763]=note: print w/replies, xml ) Need Help??


in reply to What is %_

Well, I'm not totally sure what sets %_ myself, but I have found out that you can use %_.
Just don't 'my' it:
&mySub(); sub mySub{ my %Defaults = (Name => 'Russ', Job => 'Programmer', Language => 'Perl'); local %_ = (%Defaults, @_); # Warning, this does not compile! ### #(Now use %_ as my argument list) ### print "The name is: $_{Name}\n"; }
That works perfectly fine. It would be intersting to see if there is an internal perl action/method/function that will actually set %_, like it does with $_ and @_;

Any takers?

-- philip
We put the 'K' in kwality!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-19 03:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found