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


in reply to Dereferencing a Hash of Arrays

Your problem is that the values in hashes can only be scalars in Perl. However references are scalars, so you can use references to arrays:

my %alphabet = ( a => \@atags, b => \@btags, ); say for values %alphabet;