in reply to What is maintainable perl code?

Maintainable code (not just perl) is code that some other moderately skilled programmer can pick up and modify _safely_.
To make your code reach this state, you need global definitions of constants, _good_ comments when you do any 'magic'. The example would be that
#display the result; print $result;
is a waste of disk space.
But commenting round a Schwartzian transform, to a) say what it does, and b) link to example/discussion somewhere on the net, is extremely useful if I'm coming to it, and trying to understand your code.
If I to get out a pad of paper to figure out what you're trying to do, then it doesn't have enough comments.
Consistent style is also important. I don't want to be getting confused by what some code is doing because in some situations you start the 'code block' on the same line, and in others, you start it on the next line.
(It can be dealt with by using something like PerlTidy, but...)

--
It's not pessimism if there is a worse option, it's not paranoia when they are and it's not cynicism when you're right.