Help for this page

Select Code to Download


  1. or download this
    while (my $line = <$IN>)
    {
        # ...
    }
    
  2. or download this
    while (my $line = <$IN>)
    {   my $eof = chop( $line );    # This removes last char and saves
    ...
    
        # ...
    }