Help for this page

Select Code to Download


  1. or download this
    for my $i (0..$#$array1) {
       print("$array1->[$i], $array2->[$i]\n");
    }
    
  2. or download this
    for my $i (0..$#$array1) {
       my ($x, $c) = ($array1->[$i], $array2->[$i]);
       print("$x, $c\n");
    }