Help for this page

Select Code to Download


  1. or download this
    use IO::File;
    $f = new IO::File "filename.txt", "r";
    
  2. or download this
    while (<$f>)
    {
       ... do something here...
    }
    
  3. or download this
    undef $f;