Blame lazarus/hide-n-seek/project1.lpr

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