Blame lazarus/lamps/project1.lpr

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