vote up 0 vote down star

How do you keep your Perl programs from becoming a huge mess of over-complicated code?

flag
its community wiki – joe Jul 8 at 15:41
2  
Poorly written OP. – Mark Canlas Jul 8 at 15:44
It's extremely vague, and covers a lot of ground. If you had some specific uses in mind, you could ask another question, keeping it community wiki. – David Thornley Jul 8 at 16:20
The question is often the same no matter the language. – brian d foy Jul 10 at 15:51

closed as not a real question by ceejayoz, John Kugelman, Paul Tomblin, David Dorward, divo Jul 8 at 16:03

2 Answers

vote up 4 vote down check

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
link|flag
vote up 0 vote down
echo '' > script.pl

That'll reduce complexity. Maybe you could give more indication of what you're trying to do?

link|flag
1  
I think he's trying to pimp a web site. – Paul Tomblin Jul 8 at 15:45
its not like that – joe Jul 8 at 15:48

Not the answer you're looking for? Browse other questions tagged or ask your own question.