mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:28:17 +02:00
16 lines
203 B
ObjectPascal
16 lines
203 B
ObjectPascal
program Project1;
|
|
|
|
{$MODE Delphi}
|
|
|
|
uses
|
|
Forms, Interfaces,
|
|
Unit1 in 'Unit1.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|