| 132 | |
| 133 | |
| 134 | LUA_API const lua_Number *lua_version (lua_State *L) { |
| 135 | static const lua_Number version = LUA_VERSION_NUM; |
| 136 | if (L == NULL) return &version; |
| 137 | else return G(L)->version; |
| 138 | } |
| 139 | |
| 140 | |
| 141 |
no outgoing calls
no test coverage detected