mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-08 19:38:13 +02:00
16 lines
217 B
ObjectPascal
16 lines
217 B
ObjectPascal
program ExampleProject1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, Example1;
|
|
|
|
begin
|
|
Application.Title:='project1';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|