in reply to what are all the things to be considered to write a effective perl script or module?

Good coding style and practices.

The most important thing, as other Monks have already mentioned, is to make sure your code functions properly over a well-specified range of operating conditions. This is achieved by creating a good test suite.

One of the next things to consider is style, which can:

You could do worse than to read the book, Perl Best Practices.

  • Comment on Re: what are all the things to be considered to write a effective perl script or module? (style)