mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-10 09:22:33 +02:00
18 lines
322 B
ObjectPascal
18 lines
322 B
ObjectPascal
program easyeditor;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, EditMain, EasyDockMgr, fEditForm, fEditBook;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|
|
|