Blame lazarus/gravity-control/project1.lpr

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