Blame lazarus/life/project1.lpr

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