Help for this page

Select Code to Download


  1. or download this
    while( <> ) {
        print "First: $_";
    ...
    while( <> ) {
        print;
    }
    
  2. or download this
    my $args= @ARGV;
    if(     ! eof()          # Prime the <> pump
    ...
    while( <> ) {
        print;
    }