source: branches/2.20_branch/Components/Components.pas@ 442

Last change on this file since 442 was 237, checked in by RBRi, 18 years ago

small cleanup

  • Property svn:eol-style set to native
File size: 234 bytes
Line 
1Program Components;
2
3Uses
4 Forms,
5 Graphics,
6 ComponentsTestForm;
7
8{$r Components.scu}
9
10Begin
11 Application.Create;
12 Application.CreateForm (TComponentsTestForm, ComponentsTestForm);
13 Application.Run;
14 Application.Destroy;
15End.
Note: See TracBrowser for help on using the repository browser.