home *** CD-ROM | disk | FTP | other *** search
/ Best of German Only 1 / romside_best_of_german_only_1.iso / wissen / dos / wgraph / entpack.exe / WGBSP!.EXE / BSP1.PAS < prev    next >
Pascal/Delphi Source File  |  1992-10-31  |  181b  |  14 lines

  1. program Beispiel1;
  2.  
  3. uses GApp;
  4.  
  5. type TApplication=object(TApp)
  6.      end;
  7.  
  8. var MyProg:TApplication;
  9.  
  10. begin
  11.   MyProg.Init('Beispiel 1');
  12.   MyProg.Run;
  13.   MyProg.Done;
  14. end.