lua-users home
lua-l archive

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


> Is there a way, within Lua, of getting the Lua release number (e.g.
> 5.1.4)? Basically, like _VERSION, but with the 3rd digit.

No. The differences between minor releases should never affect Lua programs,
except of course for bug fixes. In other words, there are no new features
in minor releases.

What are you trying to do?