Blame lazarus/text-effect/project1.lpr

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