0111: Function not found in current scope
Compiler found what looked like a function call but couldn't find a matching definition in the current scope. It can be either because the function with such name was never declared or declared in a scope of another function.
E.g.
Possible solutions:
Check the function name spelling. It is possible that you've used a wrong name:
Check that the function is declared in either the global scope, or a scope of the current function:
Last updated