Tagged Questions
3
votes
4answers
2k views
What does `$hash{$key} |= {}` do in Perl?
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, ...