Lazarus example added

This commit is contained in:
2012-10-04 23:33:35 +07:00
parent c8117f1c92
commit 2082534bcd
7 changed files with 444 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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.