- or download this
foreach my $group (keys %no_priv_matches) {
print "New interconnects for $group are:\n";
...
print "\t@{$no_priv_matches{$group}}\n";
}
}
- or download this
foreach (@array) {
print @array;
}
- or download this
foreach (@array) {
print $_;
}
- or download this
foreach my $group (keys %np_matches) {
print "blah $group:\n";
...
print "\t@{$_}\n";
}
}