lua-users home
lua-l archive

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


How are you creating your lua state? Are you opening up the default
libraries (luaL_openlibs)? Or are you just calling lua_open/luaL_newstate?

If you are doing the former then something else is going on but if you are
only doing the latter that is likely your problem and you likely just need
to load the correct 'libraries' when you create your state.

	-Etan