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