Help for this page

Select Code to Download


  1. or download this
    foreach my $var (@array) {
        my $other_var = ....
        etc.
    }
    
  2. or download this
    my $other_var;
    foreach my $var (@array) {
        $other_var = ....
        etc.
    }