Blame lazarus/calc/project1.lpr

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