mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-08 10:38:15 +02:00
14 lines
184 B
ObjectPascal
14 lines
184 B
ObjectPascal
program Selection;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
Forms,
|
|
Selectionform,
|
|
ControlSelection;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end. |