mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-06 04:52:53 +02:00
15 lines
239 B
ObjectPascal
15 lines
239 B
ObjectPascal
program TestApplication;
|
|
|
|
uses
|
|
Forms,
|
|
fMain in 'fMain.pas' {Form1};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Test Application';
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|