songahji has asked for the wisdom of the Perl Monks concerning the following question:
There are many perl style programming out there. And since my next project going to be big and maintained by lots of diff guys. I would like your input on the styling which as less obfu as possible.
Following is what I have in mind:
As usual standard module.
Also I use prefix $g_ on globals.use strict; use warnings; use English; # This one ...? not sure
And POD at the end of fileuse vars qw { $g_var1 }
I am open to all suggestions.__END__ =head1 NAME ... =head1 SYNOPSIS .... =head1 DESCRIPTION .... =head1 SEE ALSO .... =head1 COPYRIGHT Copyright 2005 ... ...... =cut
Thanks,
Hanny J
|
|---|