Help for this page

Select Code to Download


  1. or download this
    my @temp = @arr1;
    push @temp,@arr2;
    print $_ for @temp;
    
  2. or download this
    print @$_ for ( [ 'a' .. 'e' ], [ 0 .. 4 ] );
    
  3. or download this
    print @$_ for \@arr1, \@arr2
    
  4. or download this
    print $_ for (map { @$_ } \@arr1, \@arr2);