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