Help for this page

Select Code to Download


  1. or download this
    foreach (@array0,@array1,@array2,@array3,@array4,@array5) {
    @shift0 = shift @array0;
    ...
    @shift5 = shift @array5;
    ...
    }
    
  2. or download this
    push(@array0, $general[0]);
    push(@array1, $general[1]);
    ...
       my $shift5 = shift @array5;
       ...
    }
    
  3. or download this
    push(@array, [ @general ]);
    
    ...
       my ($shift0, $shift1, $shift2, $shift4, $shift5) = @$general;
       ...
    }