blob: c5e9e29da93a3b687e490c9bbfc0e91ee9d9d520 (
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
|
#-*- perl -*-
#
# Copyright (C) 2000 Ken'ichi Fukamachi
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
# $Id$
# $FML$
#
package FML::__HERE_IS_YOUR_MODULE_NAME__;
=head1 NAME
FML::__HERE_IS_YOUR_MODULE_NAME__.pm - what is this
=head1 DESCRIPTION
=head1 SYNOPSIS
=head1 AUTHOR
=head1 HISTORY
=cut
use strict;
use Carp;
1;
|