in reply to Re^2: perlstyle - Unclear wording
in thread perlstyle - Unclear wording
I agree that those cases don't make much sense. But with long and complex condition statement, I occassionally break it in some way to help myself understand it, for example:
if (($a1 == $a2) && ($a3 == $a4) && (($a5 == $a6) || ($a7 == $a8)) ) { }
This way of breaking makes it clear (at least to me) that those lines are at the same level.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: perlstyle - Unclear wording
by Aristotle (Chancellor) on Nov 19, 2005 at 04:28 UTC | |
Re^4: perlstyle - Unclear wording
by halley (Prior) on Nov 18, 2005 at 21:00 UTC |