Help for this page

Select Code to Download


  1. or download this
    while ( my $line1 = <$fh> )
    {
    ...
    
        # etc
    }
    
  2. or download this
    while ( my $line1 = <$fh> )
    
  3. or download this
    while ( defined(my $line1 = <$fh>) )
    
  4. or download this
    while ( my $line1 = <$fh> )
    {
    ...
    
        # etc
    }