I think the problem with Perl programs is that people treat them like simple shell scripts and put everything they know about programming behind them and just make a huge mess. Here are several points that I try to keep while writing Perl code:
- No global variables - people seem to think that in Perl it's OK to have all your data structures global and have random functions operate on them. well it's not!
- Always use strict and warnings - obvious
- Use modules - would you write your C++/Java program all in one file? probably not
- Use accessors - this will help you keep track of what are the valid properties of hashes