mirror of
https://github.com/CloudDelphi/safety4d.git
synced 2025-12-19 18:03:47 +01:00
16 lines
265 B
ObjectPascal
16 lines
265 B
ObjectPascal
program Safety4DSample;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
Unit1 in 'Unit1.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
ReportMemoryLeaksOnShutdown := True;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|