Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^5: Strictly frustrating !

by derby (Abbot)
on Jul 26, 2013 at 17:41 UTC ( [id://1046572]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Strictly frustrating !
in thread Strictly frustrating !

In addition to declaring your variables with my (as others have pointed out), you're not properly de-referencing your array or hash references. This

foreach my $k (keys %{hash}) {
should be
foreach my $k (keys %{$hash}) {
(and same for de-referencing the array reference in doArrayTidy).

-derby

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-03-29 07:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found