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 ( [id://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?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-19 03:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found