Help for this page

Select Code to Download


  1. or download this
      $pool->job($_) while (<STDIN>);
    
  2. or download this
      while (!eof(STDIN)) {
        my $buffer ;
    ...
    
        $pool->job($buffer) ;
      } ;
    
  3. or download this
      sub do {
        my ($lump) = @_ ;
    ...
    
        return $result ;
      } ;
    
  4. or download this
      sub do {
        chomp;
        my $input = $_;
        $input = shift;