testpolygon.lpr 379 B

123456789101112131415161718192021
  1. program testpolygon;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}{$IFDEF UseCThreads}
  5. cthreads,
  6. {$ENDIF}{$ENDIF}
  7. Interfaces, // this includes the LCL widgetset
  8. Forms, frmmain, reportpolygon
  9. { you can add units after this };
  10. {$R *.res}
  11. begin
  12. RequireDerivedFormResource:=True;
  13. Application.Initialize;
  14. Application.CreateForm(TForm1, Form1);
  15. Application.Run;
  16. end.