mirror of
https://github.com/ulfgebhardt/delphi_sort.git
synced 2025-12-12 15:25:58 +00:00
15 lines
195 B
ObjectPascal
15 lines
195 B
ObjectPascal
program Sort;
|
|
|
|
uses
|
|
Forms,
|
|
Unit1 in 'Unit1.pas' {Form1},
|
|
usort in 'usort.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|