diff options
author | Preston Pan <preston@nullring.xyz> | 2023-12-10 15:15:47 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-12-10 15:15:47 -0800 |
commit | e48017a6c2c9b7c3d989d660a1561f1ebb415878 (patch) | |
tree | a71f37f5d93b159307f307323b58735cbf7b3096 /src/main.c | |
parent | b253a58db000dad649654e8fb4a0cb2036c95118 (diff) |
Add more nxs functionsmaster
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -134,6 +134,7 @@ int main(int argc, char **argv) { } else if (strcmp(argv[1], "-r") == 0 || strcmp(argv[1], "--repl") == 0) { printf("Welcome to the NoExcess REPL.\n"); while (true) { + /* TODO: Finish REPL */ } } @@ -165,7 +166,6 @@ int main(int argc, char **argv) { parser_t *parser = init_parser(lexer); visitor_t *visitor = init_visitor(parser); ast_t *root = eval(visitor); - /* print_root(root); */ ast_free(root); ast_free(visitor->root); visitor_free(visitor); |