
Paul
Enthusiast
Apr 2, 2003, 11:35 AM
Views: 2503
|
|
Re: [mozkill] a muti-threaded web client in perl
|
|
|
printf "%s\n", $res->status_line; ...why not just: print $res->status_line . "\n"; ...or the wonderful: print "@{[$res->status_line]}\n"; Also your for() loop could be changed to: for (1..4) {
(This post was edited by Paul on Apr 2, 2003, 11:37 AM)
|