Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

steelrose's scratchpad

by steelrose (Scribe)
on Apr 19, 2005 at 18:41 UTC ( [id://449385]=scratchpad: print w/replies, xml ) Need Help??

my %hash = ("KEY" => "VALUE", "NAME" => "DOE"); print "before send KEY is $hash{KEY}\n"; &sendRef(\%hash); sub sendRef { my $params = shift; my %paramhash = %$params; print "Hash is - "; print %paramhash; print "\n"; print "KEY is $paramhash{KEY}\n"; } prints: before send KEY is VALUE Hash is - KEY is
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (4)
As of 2024-04-19 20:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found