Help for this page

Select Code to Download


  1. or download this
    my @array1 = qw (one two three);
    my @array2 = qw (four five six);
    ...
                    print "$_\n";
            }
    }
    
  2. or download this
    one
    two
    ...
    four
    five
    six