Help for this page

Select Code to Download


  1. or download this
    while ( my $line = <INPUT_HANDLE>) {
    
  2. or download this
    while ( <INPUT_HANDLE> ) {
    
  3. or download this
    while ( defined ( my $line= <INPUT_HANDLE> ) ) {