Help for this page

Select Code to Download


  1. or download this
    while (<>) {...}
    
  2. or download this
    pilsner:~ [11:58:42]$ perl -MO=Deparse -e 'while (<>) {}'
    while (defined($_ = <ARGV>)) {
    ...
        ();
    }
    -e syntax OK