Blame lazarus/fractal/project1.lpr

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