You've already forked lina-components
mirror of
https://bitbucket.org/Dennis07/lina-components.git
synced 2026-04-23 01:13:15 +02:00
39c0916f1c
Signed-off-by: Dennis07 <den.goehlert@t-online.de>
16 lines
257 B
ObjectPascal
16 lines
257 B
ObjectPascal
program pExample;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
uMain in 'uMain.pas' {fmMain};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.Title := 'Example';
|
|
Application.CreateForm(TfmMain, fmMain);
|
|
Application.Run;
|
|
end.
|