A step into history. Perl's, of course.
Chapter 1 was basically a journey through the history of Perl. It also had how to get it and how to install it among other things.
I am on Windows (for now) and using ActiveStates version of Perl. So the setup was easy. I messed around with 'perldoc' because I read in the comp.lang.perl.misc newsgroup that it was a very good Perl tool to know.
I have made a resolution that my Perl code will not be "line noise".
My mantra will be:
use strict;
use warnings;
comment as needed
clarity above brevity
no line noise! :D (Score:1)
I'd add to your list
o write really good documentation (in perl
o document your changes with a decent changelog (and comments within the code) as you repair your programs over time.
o the reason for this is: maintainability.
o
On writing tests... (Score:1)
I have read a little about unit tests. I haven't a clue at this point on how to do them. : )
On the list though.
Re:On writing tests... (Score:1)
cpan> i
Re:On writing tests... (Score:1)