- or download this
foreach my $k (keys %h){
}
- or download this
else {
if( $M2 eq 'pairs' ) {
...
++$count;
}
}
- or download this
if( $M1 eq 'each' ) {
if( $M2 eq 'pairs' ) {
...
++$count;
}
}
- or download this
else {
while( my $k = each %hash ) {
++$count;
}
}
- or download this
else {
for my $k ( keys %hash ) {
++$count;
}
}