Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse
    while (<STDIN>)
    {
        print;
    }
    
  2. or download this
    while (defined($_ = <STDIN>)) {
        print $_;
    }
    - syntax OK