# This is an example perl template for use with mkScript.pl.
#
# The line "ext:" is used to set the file extension.
# The line "comment:" is used to set the comment character.
ext: "pm"
comment: "# "
#!/usr/bin/env perl
<LICENSE>
# ----------------------------------------------------------------------------
#   <SCRIPT>
# 
#   Author:			<NAME>
# 					<EMAIL>
# 
#   Version:		0.01
#   Date:			<DATE>
# 
#   Description:	...
# 
#   Exported Functions:
#			<PROC>
# 
# ----------------------------------------------------------------------------

package <PROC>;

#-------------------------------
# First the "use" commands
#-------------------------------
require Exporter;
@ISA = qw(Exporter);

# Define the list of subroutines to export.
@EXPORT = qw(
			<PROC>
			);

#-------------------------------
#-------------------------------
# Define subroutines
#-------------------------------
#-------------------------------
sub <PROC>
{
	print "<PROC>\n";
}

1;
