Files

22 lines
367 B
ObjectPascal
Raw Permalink Normal View History

2012-10-04 23:33:35 +07:00
program Lazarus;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Main
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm_Main, Form_Main);
Application.Run;
end.