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


in reply to push onto hash!

# this line won't work!! push @$somehash{$foo.$bar}, $x;
This one will work better :     push @{$somehash{$foo.$bar}}, $x;