home *** CD-ROM | disk | FTP | other *** search
- (* TEMPLATE.PAS
- ** -- standard template for programs using PASLIB01.INC
- *)
- program YxZZy;
- {$R+,V-}
- {.F-}
- {$I PasLib01.inc}
- {.F+}
- {---------------GLOBALS---------------------------}
- Const
- version = 'Template [0.1]';
-
- (*
- Type
- Var
- *)
- {---------------SUBPROGRAMS-----------------------}
-
- {---------------MAIN------------------------------}
- begin
- InitSys; Heading(version + TimeStamp);
- writeln('Hello, world.');
- ShowHelp('That''s all, folks!');
- end.
- {---------------END-OF-FILE-----------------------}
- {-------------------------------------------------}
-
-
-