summary refs log tree commit diff stats
path: root/examples/cross_calculator/lazarus/nimlaz.lpr
blob: 4457209d1cfec0beb5882b231663de0c361ddbf1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
program nimlaz;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}{$IFDEF UseCThreads}
  cthreads,
  {$ENDIF}{$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms
  { you can add units after this }, Unit1, LResources;

{$IFDEF WINDOWS}{$R nimlaz.rc}{$ENDIF}

begin
  {$I nimlaz.lrs}
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.