]> git.donarmstrong.com Git - reference.git/blob - templates/perl_module_header.pm
Import original source of Reference 0-Reference
[reference.git] / templates / perl_module_header.pm
1 # This module is part of da_reference, and is released under the terms
2 # of the GPL version 2, or any later version, at your option. See the
3 # file README and COPYING for more information.
4 # Copyright 2004 by Don Armstrong <don@donarmstrong.com>.
5 # $Id: perl_module_header.pm 30 2004-06-29 10:26:20Z don $
6
7 package ;
8
9 =head1 NAME
10
11  --
12
13 =head1 SYNOPSIS
14
15
16 =head1 DESCRIPTION
17
18
19 =head1 BUGS
20
21 None known.
22
23 =cut
24
25
26 use strict;
27 use vars qw($REVISION $DEBUG);
28
29 BEGIN{
30      ($REVISION) = q$LastChangedRevision: 30 $ =~ /\$LastChangedRevision:\s+([^\s+])/;
31      $DEBUG = 0 unless defined $DEBUG;
32 }
33
34
35
36 1;
37
38
39 __END__
40
41
42
43
44
45