mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2024-11-28 09:33:03 +02:00
17 lines
336 B
ObjectPascal
17 lines
336 B
ObjectPascal
program Ex12Proj;
|
|
|
|
uses
|
|
Forms,
|
|
Ex12Unit in 'Ex12Unit.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.
|