http://www.perlmonks.org?node_id=781583


in reply to Re^2: hash reference doubt
in thread hash reference question

What is going on is that Perl is exposing more of its internals than it really should be. The name of the hash is being interpreted like a reference when you use this syntax.

%hash->{key} should never have worked, but some people noticed that it did and (wrongly) started to use it. And that's why it's just deprecated and hasn't been removed from the language yet.

--

See the Copyright notice on my home node.

Perl training courses