lua-users home
lua-l archive

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


On Tue, Oct 2, 2012 at 9:12 PM,  <andre@leiradella.com> wrote:
> Let me see if I got it right...
>
> You're suggesting I separate the module in two different modules, one with the low level C functions, and another one with the high level, Lua interface which requires and uses the first one. Is that right?
>
> Seems like a good way to go.
>
> Thanks,
>
> Andre

A good example to look at is LuaSocket [1], where 'socket' is a Lua
module that builds on the undocumented "internal" C module,
'socket.core'.

[1] http://w3.impa.br/~diego/software/luasocket/

-Duncan