Tagged Questions

3
votes
4answers
118 views

A clear explanation of difference between a Hash and Hash Reference in Perl.

Hi, I would like to properly understand Hashes in Perl. I've had to use Perl intermittently for quite some time and mostly whenever I need to do it, it's mostly related to text processing. And …
3
votes
4answers
1k views

Perl: $hash{$key} |= {} ?

I was wrestling with some Perl that uses hash references. In the end it turned out that my problem was the line: $myhash{$key} |= {}; That is, "assign $myhash{$key} a reference to an empty hash, …