lua-users home
lua-l archive

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


>I am just learning Lua v5.0 and would like to know if API docs exist? I
>know about the manual, but for instance, you can search (Ctrl-F) the
>manual for lua_dofile and it returns no results, but obviously,
>lua_dofile works.

The API is completely documented in the reference manual. lua_dofile only
exists for compatibility. It is now in auxlib and will be called luaL_dofile
in Lua 5.1.
--lhf