- or download this
while (<HANDLE>) { ... } # same as ...
while (defined($_ = <HANDLE>)) { ... }
- or download this
foreach (@list) { ... } # same as foreach $_ (@list) { ... }
- or download this
$count = grep { BLOCK } LIST;
@result = grep { BLOCK } LIST;
@result = map { BLOCK } LIST;
map { BLOCK } LIST; # invalidates your warranty