Help for this page

Select Code to Download


  1. or download this
    my @join = (@array1, @array2);
    print @join;
    
  2. or download this
    print qq{$array1[$_] $array2[$_]\n} for (0 .. $#array1);
    
  3. or download this
    $ perl -Mstrict -Mwarnings -E '
    my @a1 = (q{1 2 3}, q{4 5 6});
    ...
    '
    1 2 3 a b c
    4 5 6 d e f