Help for this page

Select Code to Download


  1. or download this
    open (INFILE, '<', 'textfile.txt');
    while (<INFILE>)
    ...
      print "$_\n";
    }
    close (INFILE);