Help for this page

Select Code to Download


  1. or download this
    my(@array1, @array2) = @_;
    
  2. or download this
        foreach my $element (@array2){
            @array1 = (@array1, $element);
        }#foreach
    
  3. or download this
    sub array_merge{ @_ };