Blame lazarus/kaleidoscope/project1.lpr

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