 
      
      inherits()Get the inheritance of an object
inherits(obj)
obj (object)  — An object
string — Returns the obj's inheritance
a = object("myobj1")
b = object("myobj2")
c = object("myobj3")
 
extend(a, b)
extend(a, c)
 
inherits(a)   ' Returns "myobj2 myobj3"