- or download this
#!/usr/bin/perl
use strict;
use warnings;
BEGIN { print "Begin code$/Get initialization info from user$/"; }
- or download this
print "Or do initialization here before the require$/";
...
END { print "End program$/"; }
- or download this
package Program;
...
END: { print "End module$/" }
1;