home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/perl
- ##########################################################
- # This is our recommended comment layout style for Perl #
- ##########################################################
- # Author: <AUTHORNAME> #
- # Date: <DD> <MONTHNAME> <YEAR> #
- # Copyright: (C) xxxx All Rights Reserved. #
- ##########################################################
- # Specific Details #
- # #
- # #
- # #
- # #
- ##########################################################
-
- &Procedure1;
- &Procedure2;
- &Procedure3;
-
- sub Procedure1
- {
-
- exit;
- }
-
- sub Procedure2
- {
-
- exit;
- }
-
- sub Procedure3
- {
-
- exit;
- }
-