Help for this page

Select Code to Download


  1. or download this
    while(<$fh>)
    
  2. or download this
    while(defined($_ = <$fh>))
    
  3. or download this
        while(<$fh>){
            print;
        }
    
  4. or download this
        local $_;
        while(<$fh>){
            print;
        }
    
  5. or download this
        while(my $line = <$fh>){
            print $line;
        }