I'm starting a new project in Perl, how should I begin?
Posted
by Brad Gilbert
on Stack Overflow
See other posts from Stack Overflow
or by Brad Gilbert
Published on 2009-07-29T15:59:33Z
Indexed on
2010/04/06
1:03 UTC
Read the original article
Hit count: 299
The question is about how to start a new Perl project.
- How should I create the skeleton of the Project?
- What should the directory layout look like?
- How do I start testing?
- What build system should I use?
- Should I even use a build system?
I have been writing Perl programs for a while now. I only started to run tests on my recent programs. I know Perl the language fairly well, now it is time to learn the way to build full blown Perl projects.
I already add these to the beginning of every Perl file:
use strict;
use warnings;
# and occasionally
use autodie;
I have also used Moose
.
© Stack Overflow or respective owner