Dave Cross: Still Munging Data With Perl: Online event - Mar 17 Learn more

NAME

Father::Son::HolySpirit - write modules like a true Perl monk.

SYNOPSIS

# an explicit constructor is recommended
sub baptize
{
my ($church, $child) = @_;
bless $child, $church;
}
# end your module the proper way
amen;

DESCRIPTION

Give your modules some syntactic sugar with proper start and end. No more 1; at the end. Best paired with bless and confess.

EXPORTS

amen

Returns a true value (1). Best used at the end of a module.

AUTHOR

Bartosz Jarzyna, <brtastic.dev@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2019 by Bartosz Jarzyna

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.06.0 or, at your option, any later version of Perl 5 you may have available.