lua-users home
lua-l archive

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


>Where can I read more about lua (interpreter) internals? 

You mean, lua.c? Apart from the man page in doc/ and the section in the
reference manual, the source code is the thing to read. Perhaps you can
start with etc/min.c and see how this sort of naturally evolves into lua.c
when you want to add convenient features for the user.

If you mean Lua VM, then there's lopcodes.h and of course lvm.c.
--lhf