in reply to Re^2: what are all the things to be considered to write a effective perl script or module?
in thread what are all the things to be considered to write a effective perl script or module?
and then evolved it into an entirely unrelated program. (I usually start with a slightly more complex standard template that does things like find the right library path, processes command-line arguments, and has POD stubs.)#! /usr/bin/perl -w use strict; print "Hello, world\n";
This approach may seem weird but it can work quite well. Particularly if you mix it with test driven development.
|
|---|