>
>In modern versions of Perl that is equivalent to:
>
>for ( $_ = 1; $_ >= 10; ++$_ ) {
>    print $_
>}
>

Maybe it's 
for ( $_ =1; $_ <=10; ++$_ ) { .. }
:-)

--
http://home.arcor.de/jeffpang/

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to