Ich selbst kann mit dieser Datei nicht viel anfangen...

Kann jemand mit dem folgenden Code aus der .lpr einen Fehler entdecken?
Code: Alles auswählen
program BI;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
{$IFDEF HASAMIGA}
athreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TFMLogIn, FMLogIn);
Application.CreateForm(TFMMenue, FMMenue);
Application.CreateForm(TFMArtGrp, FMArtGrp);
Application.CreateForm(TFMArtStamm, FMArtStamm);
Application.CreateForm(TFMKonto, FMKonto);
Application.CreateForm(TFMCSV, FMCSV);
Application.Run;
end.