in reply to Re: Re: Benchmarking File Retrevial
in thread Benchmarking File Retrevial
Use B::Deparse. I think it may be documented in perlopen, but the second construct adds the defined operator.
$ perl -MO=Deparse while (<STDIN>) { print; }
produces:
while (defined($_ = <STDIN>)) { print $_; } - syntax OK
|
|---|