home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Programming Unleashed
/
Delphi_Programming_Unleashed_SAMS_Publishing_1995.iso
/
chap14
/
easyfile
/
easyfile.dpr
next >
Wrap
Text File
|
1995-03-20
|
159b
|
13 lines
program Easyfile;
uses
Forms,
Main in 'MAIN.PAS' {Form1};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.