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

Re: printing hash produce errors

by bart (Canon)
on Jun 02, 2013 at 12:18 UTC ( [id://1036582]=note: print w/replies, xml ) Need Help??


in reply to printing hash produce errors

Your problem is that you're mixing up hashes (%hash) with hash references ({ key => value }) -- note the braces.

Replace the braces with parens and it should work:

my %hash = ('perl' => 1 , 'C' => 0) ;
This produces a flat list, not a hashref, which is exactly what assignment to a hash wants.

Alternatively you could use a hashref (= a scalar pointing to a hash) everywhere:

my $hash = {'perl' => 1 , 'C' => 0} ; foreach my $key(sort keys %$hash) { print "$key : $hash->{$key} \n" ; }

Replies are listed 'Best First'.
Re^2: printing hash produce errors
by Xfiles (Initiate) on Jun 02, 2013 at 12:22 UTC
    that's it , thanks .

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (9)
As of 2024-04-23 17:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found