/jcl/examples/common/containers/trees/TreeStructure.dpr
Pascal | 14 lines | 9 code | 3 blank | 2 comment | 0 complexity | 0cc63f23c960cf2e2a1ac0d1bace7d5c MD5 | raw file
Possible License(s): BSD-3-Clause
1program TreeStructure; 2 3uses 4 Forms, 5 TreeStructureMain in 'TreeStructureMain.pas' {Form1}; 6 7{$R *.res} 8{$R ..\..\..\..\source\windows\JclCommCtrlAsInvoker.res} 9 10begin 11 Application.Initialize; 12 Application.CreateForm(TForm1, Form1); 13 Application.Run; 14end.