Blame lazarus/calc-line/project1.lpr

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