Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^4: number of keys and values in a hash

by pvaldes (Chaplain)
on Oct 11, 2011 at 15:47 UTC ( [id://930847]=note: print w/replies, xml ) Need Help??


in reply to Re^3: number of keys and values in a hash
in thread number of keys and values in a hash

Some extra notes about your code:

while (my ($keys, $values) = each %nums) {

is probably a little more readable than

while ((my $keys, my $values) = each (%nums)) {

and you could prefer also to use

open my $file, 'formal.xml'; instead: my $file;open $file, 'formal.xml');

and print "num: $number\n"; instead: print( "num: $number\n" );

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (1)
As of 2024-04-24 15:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found