Help for this page

Select Code to Download


  1. or download this
    while ($_ = <SOME_FILE_HANDLE>){
       ...
    }
    
  2. or download this
    while (defined ($_ = <SOME_FILE_HANDLE>)) {
       ...
    }