Browse Source

Delete project1.lpr

Sandy Ganz 7 months ago
parent
commit
4f91243ba8
1 changed files with 0 additions and 25 deletions
  1. 0 25
      project1.lpr

+ 0 - 25
project1.lpr

@@ -1,25 +0,0 @@
-program project1;
-
-{$mode objfpc}{$H+}
-
-uses
-  {$IFDEF UNIX}
-  cthreads,
-  {$ENDIF}
-  {$IFDEF HASAMIGA}
-  athreads,
-  {$ENDIF}
-  Interfaces, // this includes the LCL widgetset
-  Forms, unit1
-  { you can add units after this };
-
-{$R *.res}
-
-begin
-  RequireDerivedFormResource:=True;
-  Application.Scaled:=True;
-  Application.Initialize;
-  Application.CreateForm(TForm1, Form1);
-  Application.Run;
-end.
-