** Open thinkyoung library */
| 1088 | ** Open thinkyoung library |
| 1089 | */ |
| 1090 | LUAMOD_API int luaopen_thinkyoung(lua_State *L) { |
| 1091 | luaL_newlib(L, thinkyounglib); |
| 1092 | lua_pushnumber(L, VERSION); |
| 1093 | lua_setfield(L, -2, "version"); |
| 1094 | return 1; |
| 1095 | } |
nothing calls this directly
no test coverage detected