Help for this page

Select Code to Download


  1. or download this
    while (<FH>) {
    ...
    }
    
  2. or download this
    while (defined ($_ = <FH>)) {
    ...
    }
    
  3. or download this
    while (($_ = <STDIN>) ne "\n"){
    ...
    }