mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 00:18:08 +02:00
35 lines
479 B
ObjectPascal
35 lines
479 B
ObjectPascal
program lazde;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms,
|
|
FrmMain,
|
|
frmOptions,
|
|
frmNewNode,
|
|
frmmakeskel,
|
|
frmLink,
|
|
frmTable,
|
|
frmabout,
|
|
freditor,
|
|
fpdeutil,
|
|
frmexample,
|
|
frmbuild,
|
|
frmsource,
|
|
lazdemsg,
|
|
lazdeopts,
|
|
frpeditor,
|
|
frmlists;
|
|
|
|
{$R lazde.res}
|
|
|
|
begin
|
|
Application.Title:='Lazarus documentation editor';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|
|
|