Blame lazarus/scroller/project1.lpr

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