lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 1 April 2010 04:39, steve donovan <steve.j.donovan@gmail.com> wrote:

> But in the cases where inheritance makes sense, lack of
> interoperability can be a bitch. Then the implementation does matter,
> and there is no easy way to reconcile different schemes.

Do you mean when objects of different schemes try to talk to each
other? I'm asking as someone for whom

newObject = setmetatable( {}, { __index = parentObject })

is the pinnacle of my OO knowledge...

Vaughan