Guest User

Untitled

a guest
Jul 15th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package Catalyst::Plugin::HelpUtils;
  2. use strict;
  3. use warnings;
  4. our $VERSION = '1.0';
  5.  
  6. =head1 NAME
  7.  
  8. Catalyst::Plugin::HelpUtils
  9.  
  10.  
  11. =head1 SYNOPSIS
  12.  
  13. use Catalyst qw/
  14. Helputils
  15. /;
  16.  
  17. To use any of the utilities in this plugin e.g:
  18. $c->sum_it_all()
  19.  
  20.  
  21. =cut
  22.  
  23. sub sum_it_all{
  24. my @items = @_;
  25. my $result = 0;
  26. foreach(@items) {
  27. $result += $_;
  28. }
  29. return $result;
  30. }
  31.  
  32.  
  33. 1;
Add Comment
Please, Sign In to add comment