I want to call a global function from within a method, but the method's type already has another method with the same name as the global function. How do I specify that I'm referring to the global function instead of the method? In C++ I'd use ::FunctionName make it clear I meant the global namespace. What's the equivalent syntax in BlitzMax?
Function SetPosition (x, y) '... EndFunction Type Color Method SetPosition (x, y) '... EndMethod Method Update () SetPosition (x, y) EndMethod EndTypeIn the example code, 'SetPosition' in the Update method will call the types method of that name. How do I get to the global function outside the type?