Help for this page

Select Code to Download


  1. or download this
    @array1 = ('a','b','c');
    @array2 = ('a','b');
    @array3 = ('a','b','c','d');
    
  2. or download this
    #! /usr/bin/perl
    use warnings;
    ...
        print join ', ', map shift @$_ // 'NULL', \@array1, \@array2, \@ar
    +ray3;
        print "\n";
    }