# This is an example mel 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: "mel"
comment: "//"
<LICENSE>
//--------------------------------------------------------------------------//
//  <SCRIPT>
//
//  Author:			<NAME>
//					<EMAIL>
//
//  Version:		0.00.001
//  Date:			<DATE>
//
//  Description:	...
//
//  Usage:			Type "<PROC>;" in the command line,
//					or create a shelf button with this command.
//
//  Return:			none
//
//  Files Needed:	none
//
//--------------------------------------------------------------------------//


////////////////////////////////
//------------------------------
// The main procedure.
//------------------------------
////////////////////////////////
global proc <PROC> ()
////////////////////////////////
{
//--//
// Your code goes here.
print "<PROC>\n";
//--//
}
//---- end "<PROC>" ----//
