Help for this page

Select Code to Download


  1. or download this
     open RESTART, "x:\\myfiles\file.txt" or die;
    
     while(<RESTART>){
         #do something with $_
     }
    
  2. or download this
     open RESTART, "x:\\myfiles\file.txt" or die;
     #Assume the file opens correctly
    ...
         #loop. Will I know about it or will it hang?
         
     }