home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-12-17 | 1.3 KB | 38 lines | [TEXT/TPAS] |
- program TestProgram;
-
- { HelloTurboTabby, has been complied as a Unit and should be }
- { moved into your Turbo Pascal Enviroment using unit mover, }
- { provided with Turbo Pascal. Be sure to include it on your }
- { USES line. }
-
- { See HelloTurboTabby.p for detials on what is happening. }
-
-
- {$R HelloTurbo.RSRC } {This is the Resource file to use.}
- {$B+} { if compiled to disk, bundle bit on }
- {$T APPLxxxx} { if compiled to disk, file gets this type and creator }
- { xxxx is your application creator }
- {$U-} { Disable startup window and cancel standard units }
- { Remove this if you plan to use built in Turbo Pacal }
- { Procedures, like readln, writeln and so on. }
-
- uses MemTypes,QuickDraw,OSIntf,ToolIntf,PackIntf,HelloTurboTabby;
-
-
- begin
-
- { ••••
-
- Your Program Here
-
- •••• }
-
-
- { Place this code at the end of your Main Module or where you plan to }
- { exit the application . }
-
- HelloTurboTabby;
- if NextLaunch <> '' then
- LaunchNextAppl
-
- end.