in reply to RE: On elegant coding...
in thread Just thinking ...
If you use
where you meana && b && c
and b returns false, you're hosed.if (a) { b; c; }
Therefore, as an element of "elegance", I don't introduce or require any more dependencies than I can safely justify.
In practical terms, I'd reject your code during a code review, demanding a rewrite on the grounds of maintainability.
-- Randal L. Schwartz, Perl hacker
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: On elegant coding...
by princepawn (Parson) on Oct 19, 2000 at 17:05 UTC | |
by tilly (Archbishop) on Oct 20, 2000 at 12:44 UTC |