Blame lazarus/typing/project1.lpr

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