Help for this page

Select Code to Download


  1. or download this
    #! perl
    use strict;
    ...
    7
    42
    0
    
  2. or download this
    while (defined($_ = <STDIN>)) { print; }
    while ($_ = <STDIN>) { print; }
    while (<STDIN>) { print; }