in reply to
Meaning of "Clean" Perl code
My little laundry list goes:
Use warnings
Use strict
Use taint if it's a web app.
Less than 5 global variables (or substitute your own *small* integer limit)
sane use of whitespace
<controversial>use fields if it's object oriented</controversial>
Comment on
Re: Meaning of "Clean" Perl code
In Section
Seekers of Perl Wisdom