- or download this
foreach my $region (@regions) {
# something happening in the loop
}
- or download this
my $region
foreach $region (@regions) {
# something happening in the loop
}
- or download this
my $latest_region;
...
}
print "last region considered was $latest_region\n";