Help for this page

Select Code to Download


  1. or download this
    for my $i (reverse 0..$#a) {
       print("$a[$i], $b[$i]\n");
    }
    
  2. or download this
    for (my $i=@a; $i--; ) {
       print("$a[$i], $b[$i]\n");
    }