Blame


1 1ddd2d4e 2023-09-10 jrmu #!/usr/bin/perl
2 1ddd2d4e 2023-09-10 jrmu
3 1ddd2d4e 2023-09-10 jrmu # Create your own Animal distribution with Module::Starter by running
4 1ddd2d4e 2023-09-10 jrmu # module-starter from the command line. Build the distribution and run the
5 1ddd2d4e 2023-09-10 jrmu # tests. Since you haven't changed anything, all the test should pass.
6 1ddd2d4e 2023-09-10 jrmu #
7 1ddd2d4e 2023-09-10 jrmu # To see what happens when you have an error in your module, create some sort
8 1ddd2d4e 2023-09-10 jrmu # of syntax error in Animal.pm. Rerun the tests. The tests should fail this
9 1ddd2d4e 2023-09-10 jrmu # time. Don't worry about messing anything up because you can just rerun
10 1ddd2d4e 2023-09-10 jrmu # module-starter!
11 1ddd2d4e 2023-09-10 jrmu
12 1ddd2d4e 2023-09-10 jrmu use v5.24;
13 1ddd2d4e 2023-09-10 jrmu use warnings;
14 1ddd2d4e 2023-09-10 jrmu use strict;
15 1ddd2d4e 2023-09-10 jrmu use utf8;
16 1ddd2d4e 2023-09-10 jrmu