On 10/04/2012 07:40, Dr.Ruud wrote:
On 2012-04-10 06:05, Rob Dixon wrote:

while (<FILEHANDLE>) {
:
}

is identical to

while (readline FILEHANDLE) {
:
}

which compiles as

while (defined($_ = readline FILEHANDLE)) {
:
}

Not accurate, you can check with -MO=Deparse.

Please explain what you think is inaccurate.

Rob

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to