Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: hash, a troublemaker?

by Abigail-II (Bishop)
on May 12, 2004 at 09:30 UTC ( #352680=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my (%person1, %person2, %person3, ...);
        $person1 {name} = "...";
    ...
        $person2 {aeg}  =  ...;   # Oopsie.
        $person3 {name} = "...";
        $person3 {age}  =  ...;
    
  2. or download this
        my (%age, %name);
        my $entitie_count = 0;
    ...
        $aeg  {$person2} =  ...;  # Compile time error with use strict.
        $name {$person3} = "...";
        $age  {$person3} =  ...;
    

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others surveying the Monastery: (2)
As of 2023-09-23 21:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?