updated git and svn scripts
[xrzperl.git] / perl_module.template
blob779cbfd2fdbdfcdf0cfee6cf84a63cf94c4fb4be
1 use strict;
2 use warnings;
3 require v5.10.0;
5 BEGIN {
6     require Exporter;
7     our ($VERSION,@ISA,@EXPORT,@EXPORT_OK,%EXPORT_TAGS);
8     $VERSION        = 'v0.1';
9     @ISA            = qw(Exporter);
10     @EXPORT         = qw();
11     @EXPORT_OK      = qw();
14 #sub new { my $class = shift;return bless {@_},$class;}
18 __END__
19 =pod
21 =head1  NAME
23 ___NAME___ - PERL Module
25 =head1  SYNOPSIS
27 use ___NAME___;
29 =head1  DESCRIPTION
31 ___DESC___
33 =head1  CHANGELOG
35     ___DATE___  ___AUTHOR___  <___EMAIL___>
36         
37         * file created.
39 =head1  AUTHOR
41 ___AUTHOR___ <___EMAIL___>
43 =cut
44 # vim:filetype=perl