Bug fixes

This commit is contained in:
2025-11-23 19:59:22 +11:00
parent ddcde88182
commit 1c03f20af8
3 changed files with 46 additions and 17 deletions

View File

@@ -45,5 +45,6 @@ int main(int argc, char** argv) {
}
char* file = getFileContents(argv[1]);
GroundProgram program = parseFile(file);
free(file);
interpretGroundProgram(&program);
}