Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: hash, a troublemaker?

by Abigail-II (Bishop)
on May 12, 2004 at 09:30 UTC ( [id://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?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-25 07:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found