Blame lazarus/lucky-number/project1.lpr

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