add comments, fix std bugs, add menu

This commit is contained in:
suchmememanyskill
2021-07-23 14:03:49 +02:00
parent 6543a245c4
commit 5bd4dd3a48
10 changed files with 111 additions and 19 deletions

View File

@@ -68,7 +68,7 @@ int main()
//parseScript("#REQUIRE VER 3.0.5\nmain = { two = 1 + 1 }");
//ParserRet_t ret = parseScript("a.b.c(1){ a.b.c() }");
while (1) {
//while (1) {
ParserRet_t ret = parseScript(script, strlen(script));
@@ -82,7 +82,7 @@ int main()
exitFunction(ret.main.operations.data, ret.main.operations.count);
vecFree(ret.staticVarHolder);
vecFree(ret.main.operations);
}
//}
free(script);