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