dos_compilers/Borland Turbo Pascal v6/DOCDEMOS/TVGUID01.PAS
2024-07-02 07:11:05 -07:00

26 lines
583 B
Plaintext

{************************************************}
{ }
{ Turbo Pascal 6.0 }
{ Demo program from the Turbo Vision Guide }
{ }
{ Copyright (c) 1990 by Borland International }
{ }
{************************************************}
program TVGUID01;
uses App;
type
TMyApp = object(TApplication)
end;
var
MyApp: TMyApp;
begin
MyApp.Init;
MyApp.Run;
MyApp.Done;
end.