mirror of
https://github.com/loginov-dmitry/multithread.git
synced 2024-11-24 16:53:48 +02:00
15 lines
233 B
ObjectPascal
15 lines
233 B
ObjectPascal
program Ex1Proj;
|
|
|
|
uses
|
|
Forms,
|
|
Ex1Unit in 'Ex1Unit.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|