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


in reply to push to a hash of arrays

What is @desclines and where does it come from? To push to an array reference, you must dereference it. I'm assuming the array reference in question is $outer{$tag}. So do this:

push @{ $outer{$tag} }, $full;