Advertisement
Guest User

test2

a guest
Jun 7th, 2016
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.17 KB | None | 0 0
  1. program test2;
  2.  
  3. uses App;
  4.  
  5. type
  6.    TMyApp = object(TApplication)
  7. end;
  8.  
  9. var MyApp : TMyApp;
  10.  
  11. begin
  12.         MyApp.Init;
  13.         MyApp.Run;
  14.         MyApp.Done;
  15. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement