Blame lazarus/live-ink/project1.lpr

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