What value would the following function return for the input x = 95?
Function fun (x : integer) : integer;
begin
If x > 100 then fun : = x - 10
else fun : fun (fun (x + 11))
end;
89
90
91
92
not clear