home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1999 March
/
Chip_1999-03_cd.bin
/
zkuste
/
delphi
/
INFO
/
DI9901RS.ZIP
/
SRC
/
SORTTREE.DPR
< prev
next >
Wrap
Text File
|
1998-08-07
|
215b
|
14 lines
program SortTree;
uses
Forms,
SortNode in 'SortNode.pas' {SortTreeForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TSortTreeForm, SortTreeForm);
Application.Run;
end.