Help for this page

Select Code to Download


  1. or download this
    my @array;
    {
    ...
       ...
       push @array, \%hash;
    }
    
  2. or download this
    my @array;
    my %hash;
    ...
    push @array, { %hash };
    # ...
    push @array, { %hash };