Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    for( my $i = 0; $i <= $#array; $i++ ) {
      print $i, " ", $array[$i], "\n";
    }