home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programming Unleashed / Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso / misc / shape / shape.dpr < prev    next >
Text File  |  1995-03-20  |  222b  |  15 lines

  1. program Shape;
  2.  
  3. { Program copyright (c) 1995 by Charles Calvert }
  4. { Project Name: SHAPE }
  5.  
  6. uses
  7.   Forms,
  8.   Main in 'MAIN.PAS' {Form1};
  9.  
  10. begin
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.  
  15.