mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2025-02-22 16:25:30 +02:00
17 lines
333 B
ObjectPascal
17 lines
333 B
ObjectPascal
program Ex9Proj;
|
|
|
|
uses
|
|
Forms,
|
|
Ex9Unit in 'Ex9Unit.pas' {Form1},
|
|
MTUtils in '..\CommonUtils\MTUtils.pas',
|
|
TimeIntervals in '..\CommonUtils\TimeIntervals.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|