Writing Effective Perl
Learn how to write effective Perl code.
We'll cover the following...
Coding principles
Writing maintainable code means designing maintainable code. Good design comes from good habits:
-
Write testable code: Writing an effective test suite exercises the same design skills as writing effective code. Code is code. Good tests also give us the confidence to modify a program while running it ...