|
Posted by Tad J McClellan on May 13, 2008, 7:11 pm
Please log in for more thread options
> Subject: A little Direction Please
Please put the subject of your article in the Subject of your article.
> while (<INPUT>) {
> my $line = $_;
If you want the line in $line, then put it in $line rather than
put it somewhere else, only to then copy it to $line:
while ( my $line = <INPUT> ) {
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher0cmdat/"
|