mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-12 14:29:27 +02:00
18 lines
389 B
ObjectPascal
18 lines
389 B
ObjectPascal
program lazde;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
interfaces, // this includes the LCL widgetset
|
|
forms, frmmain, frmOptions, frmNewNode, frmmakeskel,
|
|
frmLink, frmTable, frmabout, pkeditor, eleditor, fpdeutil, frmexample,
|
|
frmbuild;
|
|
|
|
begin
|
|
Application.Title:='Lazarus Documentation Editor';
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|