mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-13 02:49:29 +02:00
15 lines
184 B
ObjectPascal
15 lines
184 B
ObjectPascal
program ExampleProject1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, Example1;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|