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