diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-07-11 13:33:42 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-07-11 13:33:42 +0100 |
commit | fec2f4d9d1989feb0290dfcff416385ec4b97586 (patch) | |
tree | 6098d2f8c80cabe776ca0a8c6f24233906573844 /comp/lucas-standen-NEA/code/execution/exec.c | |
parent | 3d0db47fa403229bced868f0b59e024b95cd19b6 (diff) |
finished vars, started work on the final zpy executable, still need to fix the parser though
Diffstat (limited to 'comp/lucas-standen-NEA/code/execution/exec.c')
-rw-r--r-- | comp/lucas-standen-NEA/code/execution/exec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/code/execution/exec.c b/comp/lucas-standen-NEA/code/execution/exec.c index 73961ac..2b6b202 100644 --- a/comp/lucas-standen-NEA/code/execution/exec.c +++ b/comp/lucas-standen-NEA/code/execution/exec.c @@ -2,6 +2,7 @@ #include <stdlib.h> #include "./builtin.h" + #include "../global/util.h" #include "../tokenizer/tokenizer.h" @@ -10,6 +11,7 @@ int main(){ ast_node *root = tokenize(sample); doCall(root); + free(root); return 0; |