Help for this page

Select Code to Download


  1. or download this
    while ( my $line = <STDIN> ) {
        ...
    }
    
  2. or download this
    while ( my $line = <> ) {
        ...
    }
    
  3. or download this
    while (<>) {
        ...
    }
    
  4. or download this
    bash:~$ perl -nE '...'