Blame lazarus/click/project1.lpr

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