Line 31: [Error] (56:1): Duplicate identifier '' in script C:\Program Files\SCAR 3.11\includes\SRL/SRL/Core/Globals.scar

SCAR divi 3.11, just downloaded SRL 4.0 revision using the srl download feature in divi.

this was the script i was trying to run:

SCAR Code:
program SpaceClick;
{.include SRL/SRL.scar}
Var
  r, t: Integer;

begin
SetupSRL;
ActivateClient;
if IsKeyDown(32))then
GetMousePos(r, t);
ClickMouse(r, t, true);
until (IsFKeyDown(6))
end.