You are using the term "readable code" without clearly defining it.
I think "maintainable code" is far more important.
Some of the things that help make code "maintainable" are:
- Sound domain abstractions.
- Wise program decomposition.
- Highly cohesive, loosely coupled modules.
- Descriptive, explanatory, consistent and regular names.
- Minimizing the exposure of implementation details. Minimizing the use of global data.
- Minimizing the scope of variables, pragmas, etc. Avoiding action at a distance.
- Avoiding duplication (DRY).
- Encapsulation.
- Interfaces that are: consistent; easy to use correctly; hard to use incorrectly; easy to read, maintain and extend; clearly documented; appropriate to your audience.
- Useful commenting and documentation.
- Components that are testable in isolation. Comprehensive test suites.
- Avoiding unnecessary cleverness (encapsulating and commenting it when cleverness is required).
- Establishing a rational error handling policy and following it strictly.
- Logging effectively. Logging enough information to trouble-shoot customer problems without the need to attach a debugger.
- Checking the result of all file operations, API calls and external commands, and handling unexpected results.
- Consistent code layout.
- Avoiding "big arse" functions.
- Avoiding magic numbers.
Perl doesn't stop me doing any of this. Indeed, it nicely supports all of the above points IMHO. Note that a more subjectively "readable" programming language
does not somehow magically prevent you from violating any of the above points.
Personally, I have little interest in cosmetic issues, such as whether one prefers forced indentation (a la Python)
or considers Perl's regex syntax or use of
$ in variable names "ugly" or "line noise", for
that is just personal (subjective) preference and has little to do with writing maintainable code.
See also:
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.