mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-02 14:05:37 +02:00
21 lines
301 B
ObjectPascal
21 lines
301 B
ObjectPascal
program dwarfviewer;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}
|
|
cthreads,
|
|
{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, Unit1;
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
RequireDerivedFormResource := True;
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|