Help for this page

Select Code to Download


  1. or download this
        while (<FILE>) {
            $line = <FILE>;
            ...
        }
        close(FILE);
    
  2. or download this
        my $line
        while ($line = <FILE>) {
            ...
        }
        close(FILE);