lua-users home
lua-l archive

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


Hi All,

I've put a simple scheme for doing classic OOP on the wiki:

http://lua-users.org/wiki/SimpleLuaClasses 

No novelties really, except that inheritance is done by copying the
base fields into the derived classes.  This will give better 
performance at the cost of making the class tables larger.

steve d.