1 |
<!DOCTYPE HTML> |
2 |
<title>Perl module template</title> |
3 |
|
4 |
<link rel=stylesheet href="/www/style/html/xhtml"> |
5 |
|
6 |
<h1>Perl module template</h1> |
7 |
|
8 |
<div class=section id=template-header> |
9 |
<h2>Header</h2> |
10 |
|
11 |
<p><textarea> |
12 |
package Module::Name; |
13 |
our $VERSION=do{my @r=(q$Revision: 1.31 $=~/\d+/g);sprintf "%d."."%02d" x $#r,@r}; |
14 |
use strict; |
15 |
use warnings; |
16 |
</textarea> |
17 |
</div> |
18 |
|
19 |
<div class=section id=template-footer> |
20 |
<h2>Footer</h2> |
21 |
|
22 |
<p><textarea> |
23 |
1; |
24 |
|
25 |
__END__ |
26 |
|
27 |
=head1 LICENSE |
28 |
|
29 |
Copyright 2009 Wakaba <w@suika.fam.cx>. |
30 |
|
31 |
This library is free software; you can redistribute it and/or modify |
32 |
it under the same terms as Perl itself. |
33 |
|
34 |
=cut |
35 |
|
36 |
# $Date:$ |
37 |
</textarea> |
38 |
</div> |