15 lines
275 B
ObjectPascal
15 lines
275 B
ObjectPascal
|
|
program TreeStructure;
|
||
|
|
|
||
|
|
uses
|
||
|
|
Forms,
|
||
|
|
TreeStructureMain in 'TreeStructureMain.pas' {Form1};
|
||
|
|
|
||
|
|
{$R *.res}
|
||
|
|
{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res}
|
||
|
|
|
||
|
|
begin
|
||
|
|
Application.Initialize;
|
||
|
|
Application.CreateForm(TForm1, Form1);
|
||
|
|
Application.Run;
|
||
|
|
end.
|