|
|
| Keep It Simple, Stupid | |
| PerlMonks |
Re: (MeowChow) Re2: best practiceby inverse (Acolyte) |
| on Aug 28, 2001 at 05:27 UTC ( #108324=note: print w/ replies, xml ) | Need Help?? |
|
I actually prefered the above style for a long time. But it turns out many people can't stand it because it turns all code into a venisian blind of alternating white and black. On the other hand lining up the braces seems very natural. I have come up with the following compromise, which sacrifices ease of editing for readability:
if ($larry)
{ foo();
}
elsif ($tom)
{ pie();
if ($stooges)
{ nyack();
} }
else # Randal
{ cow();
}
BTW: Code Complete rocks
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||