home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l044 / 4.ddi / DOCDEMOS.ZIP / TVGUID01.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1990-10-23  |  583 b   |  26 lines

  1. {************************************************}
  2. {                                                }
  3. {   Turbo Pascal 6.0                             }
  4. {   Demo program from the Turbo Vision Guide     }
  5. {                                                }
  6. {   Copyright (c) 1990 by Borland International  }
  7. {                                                }
  8. {************************************************}
  9.  
  10. program TVGUID01;
  11.  
  12. uses App;
  13.  
  14. type
  15.   TMyApp = object(TApplication)
  16.   end;
  17.  
  18. var
  19.   MyApp: TMyApp;
  20.  
  21. begin
  22.   MyApp.Init;
  23.   MyApp.Run;
  24.   MyApp.Done;
  25. end.
  26.