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