Blob
1 #!/usr/bin/perl3 # Create your own Animal distribution with Module::Starter by running4 # module-starter from the command line. Build the distribution and run the5 # tests. Since you haven't changed anything, all the test should pass.6 #7 # To see what happens when you have an error in your module, create some sort8 # of syntax error in Animal.pm. Rerun the tests. The tests should fail this9 # time. Don't worry about messing anything up because you can just rerun10 # module-starter!12 use v5.24;13 use warnings;14 use strict;15 use utf8;