mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-22 16:02:31 +02:00
16 lines
252 B
ObjectPascal
16 lines
252 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms
|
|
{ add your units here }, Unit1, lhelpcontrolpkg;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|