File Coverage

blib/lib/Acme/MyFirstModule/CARNIL.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 2 2 100.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             package Acme::MyFirstModule::CARNIL;
2              
3 1     1   20576 use 5.006;
  1         3  
  1         45  
4 1     1   5 use strict;
  1         2  
  1         28  
5 1     1   5 use warnings FATAL => 'all';
  1         10  
  1         127  
6              
7             print "Hello World!\n";
8              
9             =head1 NAME
10              
11             Acme::MyFirstModule::CARNIL - The great new Acme::MyFirstModule::CARNIL!
12              
13             =head1 VERSION
14              
15             Version 0.03
16              
17             =cut
18              
19             our $VERSION = '0.03';
20              
21              
22             =head1 SYNOPSIS
23              
24             Quick summary of what the module does.
25              
26             Perhaps a little code snippet.
27              
28             use Acme::MyFirstModule::CARNIL;
29              
30             my $foo = Acme::MyFirstModule::CARNIL->new();
31             ...
32              
33             =head1 EXPORT
34              
35             A list of functions that can be exported. You can delete this section
36             if you don't export anything, such as for a purely object-oriented module.
37              
38             =head1 SUBROUTINES/METHODS
39              
40             =head2 function1
41              
42             =cut
43              
44 0     0 1   sub function1 {
45             }
46              
47             =head2 function2
48              
49             =cut
50              
51 0     0 1   sub function2 {
52             }
53              
54             =head1 AUTHOR
55              
56             Salvatore Bonaccorso, C<< >>
57              
58             =head1 BUGS
59              
60             Please report any bugs or feature requests to C, or through
61             the web interface at L. I will be notified, and then you'll
62             automatically be notified of progress on your bug as I make changes.
63              
64              
65              
66              
67             =head1 SUPPORT
68              
69             You can find documentation for this module with the perldoc command.
70              
71             perldoc Acme::MyFirstModule::CARNIL
72              
73              
74             You can also look for information at:
75              
76             =over 4
77              
78             =item * RT: CPAN's request tracker (report bugs here)
79              
80             L
81              
82             =item * AnnoCPAN: Annotated CPAN documentation
83              
84             L
85              
86             =item * CPAN Ratings
87              
88             L
89              
90             =item * Search CPAN
91              
92             L
93              
94             =back
95              
96              
97             =head1 ACKNOWLEDGEMENTS
98              
99              
100             =head1 LICENSE AND COPYRIGHT
101              
102             Copyright 2014 Salvatore Bonaccorso.
103              
104             This program is free software; you can redistribute it and/or modify it
105             under the terms of the the Artistic License (2.0). You may obtain a
106             copy of the full license at:
107              
108             L
109              
110             Any use, modification, and distribution of the Standard or Modified
111             Versions is governed by this Artistic License. By using, modifying or
112             distributing the Package, you accept this license. Do not use, modify,
113             or distribute the Package, if you do not accept this license.
114              
115             If your Modified Version has been derived from a Modified Version made
116             by someone other than you, you are nevertheless required to ensure that
117             your Modified Version complies with the requirements of this license.
118              
119             This license does not grant you the right to use any trademark, service
120             mark, tradename, or logo of the Copyright Holder.
121              
122             This license includes the non-exclusive, worldwide, free-of-charge
123             patent license to make, have made, use, offer to sell, sell, import and
124             otherwise transfer the Package with respect to any patent claims
125             licensable by the Copyright Holder that are necessarily infringed by the
126             Package. If you institute patent litigation (including a cross-claim or
127             counterclaim) against any party alleging that the Package constitutes
128             direct or contributory patent infringement, then this Artistic License
129             to you shall terminate on the date that such litigation is filed.
130              
131             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER
132             AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES.
133             THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
134             PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY
135             YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR
136             CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR
137             CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE,
138             EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
139              
140              
141             =cut
142              
143             1; # End of Acme::MyFirstModule::CARNIL