home *** CD-ROM | disk | FTP | other *** search
- {$R-} {Range checking off}
- {$B-} {Boolean short circuiting off}
- {$S+} {Stack checking on}
- {$I+} {I/O checking on}
- {$N-} {No numeric coprocessor}
- {$M 65500,16384,655360} {Turbo 3 default stack and heap}
-
- Program SkeletonProgram(Input,Output);
-
- Uses
- Crt,
- Dos,
- MgProg;
-
- { Enter any MiniGen window procedres here }
-
- Procedure MainLoop; { Main program logic }
- Begin
- End;
-
- Begin {** Main Program **}
- ClrScr;
- MaxLimits;
- { Define screens }
- MainLoop;
- TerminateScreens;
- LowVideo;
- ClrScr;
- End. {** Main **}