Acme-FIREXFLY-Utils

 view release on metacpan or  search on metacpan

lib/Acme/FIREXFLY/Utils.pm  view on Meta::CPAN

package Acme::FIREXFLY::Utils;

use 5.006;
use strict;
use warnings;

=head1 NAME

Acme::FIREXFLY::Utils - Chapter 21 exercise from the book 'Intermediate Perl'

=head1 VERSION

Version 0.04

=cut

our $VERSION = '0.04';


=head1 SYNOPSIS

Pracice creating a module and uploading to CPAN.

Use the sum method to calculate the sum of the passed in values: 

    use Acme::FIREXFLY::Utils;

    my $foo = Acme::FIREXFLY::Utils::sum( 1, 2, 3 );


=head1 SUBROUTINES/METHODS

=head2 sum( LIST )

Calculates sum of input

=cut

sub sum {
    my $sum = 0;
    $sum += $_ for @_;
    $sum;

}

=head1 AUTHOR

firexfly, C<< <code at firexfly.com> >>

=head1 BUGS

Please report any bugs or feature requests to C<bug-acme-firexfly-utils at rt.cpan.org>, or through
the web interface at L<https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-FIREXFLY-Utils>.  I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.




=head1 SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc Acme::FIREXFLY::Utils


You can also look for information at:

=over 4

=item * RT: CPAN's request tracker (report bugs here)

L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-FIREXFLY-Utils>

=item * AnnoCPAN: Annotated CPAN documentation

L<http://annocpan.org/dist/Acme-FIREXFLY-Utils>

=item * CPAN Ratings

L<https://cpanratings.perl.org/d/Acme-FIREXFLY-Utils>

=item * Search CPAN



( run in 2.456 seconds using v1.01-cache-2.11-cpan-b16cb0d3907 )