lua-users home
lua-l archive

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


On Fri, Jun 11, 2004 at 04:02:03PM -0500, Wade Williams wrote:
> Hi all,
> 
> Please forgive my ignorance - I'm a Lua newbie.  I did search the web, 
> documentation and mailing list archives and could not come up with an 
> answer.
> 
> What's the difference between liblua.a and liblualib.a?
> 
> Thanks,
> 
> Wade

liblua it's lua. (lib-lua)
liblualib it's lualib (lib-lualib) --> for coroutine,table,io,os,string,math,debug, loadlib libraries and methods. (look at /usr/include/lualib.h)

PpluX