add yaml serialization library

This commit is contained in:
MihailRis
2025-03-24 07:43:41 +03:00
parent 396fab02b3
commit c28bfae679
8 changed files with 59 additions and 4 deletions
+2 -1
View File
@@ -19,4 +19,5 @@ static int l_json_parse(lua::State* L) {
const luaL_Reg jsonlib[] = {
{"tostring", lua::wrap<l_json_stringify>},
{"parse", lua::wrap<l_json_parse>},
{NULL, NULL}};
{NULL, NULL}
};