Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for(my $i = 0; $i < @array; $i++) {
        print "$i $array[$i]\n";
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    foreach my $filename (@array) {
        print "$filename\n";
    }