home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
misc
/
shape
/
shape.dpr
< prev
next >
Wrap
Text File
|
1995-03-20
|
222b
|
15 lines
program Shape;
{ Program copyright (c) 1995 by Charles Calvert }
{ Project Name: SHAPE }
uses
Forms,
Main in 'MAIN.PAS' {Form1};
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.