Blame lazarus/snake/project1.lpr

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