Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Doubt in assigning hash reference values for Constant pragma declaration ?

by salva (Canon)
on Sep 21, 2007 at 07:08 UTC ( [id://640284]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use constant A => $hash;
    
  2. or download this
    my $hash = { 'a' => 2 };
    
  3. or download this
    my $hash;
    BEGIN { $hash = { 'a' => 2 } }
    use constant A => $hash;
    
  4. or download this
    my $hash;
    use constant A => $hash = {'a' => 2};
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-16 22:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found