Help for this page

Select Code to Download


  1. or download this
    @array1 = @array2;
    
  2. or download this
    foreach $element ( @array2 ) {
    
      push( @array1, $element );
    }
    
  3. or download this
    foreach $element ( @array2 ) {
    
    ...
        push( @array1, $element );
      }
    }