⭐
in reply to
How do I make a hash of arrays?
You can always...
push(@{$hash{$key}}, $insert_val);
[download]
...to load the arrays in the hash. That way you don't have to build the arrays, then dereference them into the hash.
Comment on
Re: How do I make a hash of arrays?
Download
Code
In Section
Seekers of Perl Wisdom