blob: c0e33a1dab1966e9e495f49ea01d8cf80c730ff7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package $MODULE$;
use strict;
require Exporter;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
# set the version for version checking
$VERSION = $VERSION$;
@ISA = qw(Exporter);
@EXPORT = qw(&hello);
%EXPORT_TAGS = ( ); # eg: TAG => [ qw!name1 name2! ],
# your exported package globals go here,
# as well as any optionally exported functions
@EXPORT_OK = qw($Var1 %Hashit &func3);
use vars qw($Var1 %Hashit);
# non-exported package globals go here
use vars qw(@more $stuff);
# initialize package globals, first exported ones
$Var1 = '';
%Hashit = ();
# then the others (which are still accessible as $Some::Module::stuff)
$stuff = '';
@more = ();
# file-private lexicals go here
my $priv_var = '';
my %secret_hash = ();
sub hello {
print "hello world\n";
}
END { } # module clean-up code here (global destructor)
1;
__END__
=head1 NAME
ModuleName - short discription of your program
=head1 SYNOPSIS
how to us your module
=head1 DESCRIPTION
long description of your module
=head1 SEE ALSO
need to know things before somebody uses your program
=head1 AUTHOR
$AUTHOR$
=cut
|