| 145 | |
| 146 | |
| 147 | LUA_API const lua_Number *lua_version(lua_State *L) { |
| 148 | static const lua_Number version = LUA_VERSION_NUM; |
| 149 | if (L == nullptr) return &version; |
| 150 | else return G(L)->version; |
| 151 | } |
| 152 | |
| 153 | |
| 154 |
no outgoing calls
no test coverage detected