Blame lazarus/paint/project1.lpr

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