Blame lazarus/gravity/project1.lpr

1beac4
program project1;
1beac4
1beac4
{$mode objfpc}{$H+}
1beac4
1beac4
uses
1beac4
  {$IFDEF UNIX}{$IFDEF UseCThreads}
1beac4
  cthreads,
1beac4
  {$ENDIF}{$ENDIF}
1beac4
  Interfaces, // this includes the LCL widgetset
1beac4
  Forms, Unit1
1beac4
  { you can add units after this };
1beac4
1beac4
{$R *.res}
1beac4
1beac4
begin
1beac4
  RequireDerivedFormResource:=True;
1beac4
  Application.Initialize;
1beac4
  Application.CreateForm(TForm1, Form1);
1beac4
  Application.Run;
1beac4
end.
1beac4