in reply to Re^3: Memory leak!
in thread Memory leak!
This is intentional. In both C and Perl, any combination of the three expressions can be omitted.
I know.
It means that instead of this:
C:\test>perl -E"while(<>){ print }" hello hello goodbye goodbye ^Z
We could write:
C:\test>perl -E"for(;<>;){ print }" fred fred bill bill john john ^Z
But few, if any, would.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Memory leak!
by ikegami (Patriarch) on Dec 13, 2011 at 04:44 UTC |