Larry Wall <[EMAIL PROTECTED]> writes:
> The p5-to-p6 translator will turn any
>
> while (<handle>) {...}
>
> into
>
> for @$handle {...}
Including:
while(<>) {...}
to
for @$ {...}
?
Jon
Larry Wall <[EMAIL PROTECTED]> writes:
> The p5-to-p6 translator will turn any
>
> while (<handle>) {...}
>
> into
>
> for @$handle {...}
Including:
while(<>) {...}
to
for @$ {...}
?
Jon