8.15.0.12
9.7 Callables
An interface that a class can implement (publicly or privately) to make instances of the class callable as functions. The interface has one abstract method, which must be overridden to implement the behavior of function calls:
call —
receives the arguments that are passed to the instance that is called as a function, and the method’s result is the result of the function call.
class Posn(x, y):