mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:58:02 +02:00
16 lines
235 B
ObjectPascal
16 lines
235 B
ObjectPascal
program OIExample;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces,
|
|
Forms, MainUnit;
|
|
|
|
begin
|
|
Application.Title:='Example for the Object Inspector';
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|