in reply to My Laptop talks to me.
One things I consider viataly important when writing code, make it readable. Something that are just as valuable in perl as any other language, if not more so given the oportunity to abuse perl.
Avoid side effects, ensure that each line has a specific purpose. Try to ensure that each line performs a single operation. This will save you hours in debugging and maintenence. Likes such as:
Should be split into several lines. Why write the code to be so difficult to read?return $v[0]->[$h].$h[!!$h].$and[!!($h&&($t||$u))].$v[!(1==$t&&($u+=10 +)&&($t=0))]->[$t].$format{'space'}.$v[0]->[$u];
All in all very clever code, VERY hard to read, consequently its worth is much reduced.
--
Zigster
|
---|
Replies are listed 'Best First'. | |
---|---|
Hmm, has anyone read Heart of Darkness?
by frankus (Priest) on Apr 12, 2001 at 14:15 UTC | |
by zigster (Hermit) on Apr 12, 2001 at 15:25 UTC | |
by frankus (Priest) on Apr 12, 2001 at 15:44 UTC | |
by tilly (Archbishop) on Apr 12, 2001 at 22:16 UTC | |
by satchboost (Scribe) on Apr 12, 2001 at 22:27 UTC | |
|
In Section
Cool Uses for Perl