You've already forked multithread
mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2025-12-26 15:46:46 +02:00
15 lines
259 B
ObjectPascal
15 lines
259 B
ObjectPascal
program CalcTimeQuant;
|
|
|
|
uses
|
|
Forms,
|
|
CalcTimeQuantUnit in 'CalcTimeQuantUnit.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|