ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/VisualSwapcodes/Project1.dpr
Revision: 98
Committed: Tue Feb 20 16:23:27 2007 UTC (18 years, 7 months ago) by alloc
File size: 188 byte(s)
Log Message:

File Contents

# Content
1 program Project1;
2
3 uses
4 Forms,
5 Unit1 in 'Unit1.pas' {Form1};
6
7 {$R *.res}
8
9 begin
10 Application.Initialize;
11 Application.CreateForm(TForm1, Form1);
12 Application.Run;
13 end.