Blame lazarus/scroller/project1.lpr

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