in reply to Re^2: Count values in a hash
in thread Count values in a hash

What does @{} do?
It dereferences the array. See also:

Replies are listed 'Best First'.
Re^4: Count values in a hash
by sophix (Sexton) on Jan 11, 2011 at 18:11 UTC
    Ah, okay. Then this explains why the array did not work in my case. I need to dereference it as to work on it. Thanks for the links, I'll check them out now. I guess a good knowledge of using references in Perl would help me solve many of my problems.