in reply to Re: An error message to understand
in thread An error message to understand
Or:foreach (@CHOICE) { if ($_ && /.../) { ... } }
if all you have inside the foreach is the if statement.foreach (@CHOICE) { $_ or next; if (/.../) { ... } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: An error message to understand
by tirwhan (Abbot) on Jan 06, 2006 at 12:29 UTC |