Help for this page

Select Code to Download


  1. or download this
    foreach my $line (@arr) {
       ## stuff goes here;
    }
    
  2. or download this
    for (my $x = 0; $x < $#arr; $x++) {
        my $line = $arr[$x];
        ##  stuff goes here;
    }