home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0632.ZIP / CCE_0632 / GOBJ_111.ZIP / GOBJECTS.111 / SOURCE / MINIMAL.PAS < prev    next >
Pascal/Delphi Source File  |  1994-03-05  |  208b  |  12 lines

  1. program Minimal;
  2. { minimales ObjectGEM-Programm }
  3.  
  4.   uses OWindows;
  5.  
  6.   var MyApplication: TApplication;
  7.  
  8. begin
  9.   MyApplication.Init('MINI','Minimal');
  10.   MyApplication.Run;
  11.   MyApplication.Done
  12. end.