home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / chap09 / ellipses / ellipses.dpr next >
Text File  |  1995-03-20  |  145b  |  11 lines

  1. program Ellipses;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1};
  6.  
  7. begin
  8.   Application.CreateForm(TForm1, Form1);
  9.   Application.Run;
  10. end.
  11.