Help for this page

Select Code to Download


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