Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Hash problem: each() failure

by DigitalKitty (Parson)
on Feb 23, 2008 at 18:12 UTC ( #669760=note: print w/replies, xml ) Need Help??


in reply to Hash problem: each() failure

Hi Anonymous Monk.

As Corion mentioned, you used the anonymous hash syntax, i.e., $name_of_hash = { ... };

Assigning a list to a hash variable will result in the key/value pair(s) being created.
use warnings; use strict; my %Cls = qw( P a N b U c ); print %Cls, "\n\n"; while ( my ($k, $v) = each( %Cls ) ) { print "$k => $v\n"; }

Update: Fixed typo by changing %name_of_hash = { ... }; to $name_of_hash = { ... }; after ikegami++ noticed it. Thanks.

Hope this helps,
~Katie

Log In?
Username:
Password:

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

How do I use this? | Other CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2023-03-24 19:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (61 votes). Check out past polls.

    Notices?