Closed daurnimator closed 6 years ago
I wasn't sure whether to do it in the style of Lua's _VERSION which is the string "Lua 5.3" (e.g. so _FENGARI_VERSION == "Fengari 0.0.1", or as a number, which seems to be more useful.
_VERSION
"Lua 5.3"
_FENGARI_VERSION == "Fengari 0.0.1"
Closes https://github.com/fengari-lua/fengari-web/issues/13
LuaJIT exposes it's version via jit.version and e.g. contains "LuaJIT 2.1.0-beta3". Perhaps we should have a fengari library?
jit.version
"LuaJIT 2.1.0-beta3"
fengari
Merged #120 instead.
I wasn't sure whether to do it in the style of Lua's
_VERSION
which is the string"Lua 5.3"
(e.g. so_FENGARI_VERSION == "Fengari 0.0.1"
, or as a number, which seems to be more useful.Closes https://github.com/fengari-lua/fengari-web/issues/13