Help for this page

Select Code to Download


  1. or download this
    my $incrementor = int((scalar(@my_array) / 2));
    
  2. or download this
      for (my $i=0;$i<=$incrementor+1;$i++) {
        print $my_array[$i], "\t";
        print $my_array[$i+$incrementor] if defined($my_array[$i+$incremen
    +tor]);
        print "\n";
      }