summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-12-10 15:15:47 -0800
committerPreston Pan <preston@nullring.xyz>2023-12-10 15:15:47 -0800
commite48017a6c2c9b7c3d989d660a1561f1ebb415878 (patch)
treea71f37f5d93b159307f307323b58735cbf7b3096 /src/main.c
parentb253a58db000dad649654e8fb4a0cb2036c95118 (diff)
Add more nxs functionsmaster
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 858334b..ee2c381 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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);