Help for this page

Select Code to Download


  1. or download this
    {
        my $line = <IN>;
    ...
        }
    redo unless eof(IN);    
    }
    
  2. or download this
    my @in = <IN>
    {
    ...
        }
    redo while (@in);    
    }