/jcl/examples/common/containers/trees/TreeStructure.dpr
https://github.com/the-Arioch/jcl · Pascal · 14 lines · 9 code · 3 blank · 2 comment · 0 complexity · 0cc63f23c960cf2e2a1ac0d1bace7d5c MD5 · raw file
- 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.