mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-03 11:38:17 +02:00
20 lines
430 B
ObjectPascal
20 lines
430 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, fmmakeskel, frmsource, lazdemsg, lazdeopts, pgeditor;
|
|
|
|
{$IFDEF WINDOWS}{$R lazde.rc}{$ENDIF}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|
|
|