Help for this page

Select Code to Download


  1. or download this
    my @array;
    my %hash;
    ...
    %hash = ();
    # ...
    push @array, { %hash };
    
  2. or download this
    my @array;
    my %hash;
    ...
       # ...
       push @array, { %hash };
    }
    
  3. or download this
    my @array;
    for (...) {
    ...
       # ...
       push @array, { %hash };
    }