You've already forked multithread
mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2026-04-26 07:44:54 +02:00
16 lines
320 B
ObjectPascal
16 lines
320 B
ObjectPascal
program CalcMaxSwitchesCountProj;
|
|
|
|
uses
|
|
Forms,
|
|
CalcSwitchesCountForm in 'CalcSwitchesCountForm.pas' {btnRun},
|
|
TimeIntervals in '..\CommonUtils\TimeIntervals.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|