Help for this page

Select Code to Download


  1. or download this
    my $first;
    my $last;
    ...
          $last  = $_;
       }
    }
    
  2. or download this
    use File::ReadBackwards ();
    
    ...
    
       $last = $fh->readline();
    }
    
  3. or download this
    my $first;
    my $last;
    ...
    
       ($first, $last) = (<$fh>)[0, -1];
    }