lazarus/examples/gridexamples/spreadsheet/spreadsheet.lpr
2008-10-19 19:18:45 +00:00

22 lines
393 B
ObjectPascal

program spreadsheet;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this }, main, LResources;
{$IFDEF WINDOWS}{$R spreadsheet.rc}{$ENDIF}
begin
{$I spreadsheet.lrs}
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.