Help for this page
#!/usr/local/bin/perl ... my %hash; push @{$hash{first}}, \@array1, \@array2; print Dumper \%hash;
$hash{first} ||= []; push @{ $hash{first} },'foo';