Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: Re: Re: multiple keys - one value

by QM (Parson)
on Dec 04, 2003 at 07:10 UTC ( [id://312134]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my %h=(   HELP => sub {print qq(help\n)},
    ...
    $h{Q} = $h{HELP};
    print Dumper(%h);
    print $h{Q}();
    
  2. or download this
    $VAR1 = 'Q';
    $VAR2 = sub { "DUMMY" };
    ...
    $VAR6 = sub { "DUMMY" };
    help
    1
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-23 11:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found