You've already forked multithread
mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2025-07-16 02:34:36 +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.
|