Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
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 cooling their heels in the Monastery: (3)
As of 2024-04-20 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found