Help for this page

Select Code to Download


  1. or download this
    while (<FOO>) {
       ...
    }
    
  2. or download this
    while (not_the_end_of_the_file(*FOO)) {
       ...
    }
    
  3. or download this
    while (defined ($_ = readline(*FOO))) {
       ...
    }
    
  4. or download this