in reply to Re^2: using multiple conditionals in a while(test)
in thread using multiple conditionals in a while(test)
You're right.
C:\test>perl -MO=Deparse -e"while( <> ) { print }" while (defined($_ = <ARGV>)) { print $_; } -e syntax OK
But if you're doing it yourself, it's as well to.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: using multiple conditionals in a while(test)
by How09 (Novice) on Dec 04, 2010 at 14:25 UTC |