Help for this page

Select Code to Download


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