Help for this page

Select Code to Download


  1. or download this
               while (defined($_ = <STDIN>)) { print; }
               while ($_ = <STDIN>) { print; }
    ...
               print while defined($_ = <STDIN>);
               print while ($_ = <STDIN>);
               print while <STDIN>;