Acme-AXP-Utils

 view release on metacpan or  search on metacpan

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

package Acme::AXP::Utils;

use 5.006;
use strict;
use warnings;

=head1 NAME

Acme::AXP::Utils - Exercises for Intermediate Perl, 2nd Edition, Chapter 21

=head1 VERSION

Version 0.06

=cut

our $VERSION = '0.06';

=head1 SYNOPSIS

I'm pretty sure that the naming scheme for this module breaks the rules that brian d foy himself
indicated in https://pause.perl.org/pause/query?ACTION=pause_namingmodules, but I'm only following
instructions.

=head1 EXPORT

=head1 SUBROUTINES/METHODS

=head2 sum

Add a bunch of numbers. Definitely don't multiply them.

=cut

sub sum {
	my $tot = 0;
	$tot += $_ foreach ( @_ );
	return $tot;
}

=head1 AUTHOR

Alex P, C<< <axp-pause at mailinator.com> >>

=head1 BUGS

Please report any bugs or feature requests to C<bug-acme-axp-utils at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Acme-AXP-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::AXP::Utils

You can also look for information at:

=over 4

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

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

=item * AnnoCPAN: Annotated CPAN documentation

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

=item * CPAN Ratings

L<http://cpanratings.perl.org/d/Acme-AXP-Utils>

=item * Search CPAN

L<http://search.cpan.org/dist/Acme-AXP-Utils/>

=back

=head1 ACKNOWLEDGEMENTS

=head1 LICENSE AND COPYRIGHT

Copyright 2017 Alex P.

This program is free software; you can redistribute it and/or modify it
under the terms of the the Artistic License (2.0). You may obtain a
copy of the full license at:

L<http://www.perlfoundation.org/artistic_license_2_0>

Any use, modification, and distribution of the Standard or Modified
Versions is governed by this Artistic License. By using, modifying or
distributing the Package, you accept this license. Do not use, modify,
or distribute the Package, if you do not accept this license.



( run in 1.679 second using v1.01-cache-2.11-cpan-7fcb06a456a )