What is wrong with this HpCheck Function?
i am trying to determine if i need to eat or not, but i keep getting
Simba Code:
[Error] (317:28): Variable Expected at line 316
Compiling failed.
Line 316 is
Simba Code:
if not (getMMLevels('hp','orange') > 1)) then
Simba Code:
Function HPchecker: Boolean;
var
color:String;
Begin
result:=true;
if not (getMMLevels('hp','orange') > 1)) then
Begin
Result := False
WriteLn('We Are Healthy');
end;
if (getMMLevels('hp','Orange') > 1)) then
Begin
result:=True;
WriteLn('We Need To Eat');
Eat;
end;