aboutsummaryrefslogtreecommitdiff
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
new file mode 100644
index 0000000..7f7dacb
--- /dev/null
+++ b/src/parser.h
@@ -0,0 +1,7 @@
+#pragma once
+
+#include "ast.h"
+#include "lexer.h"
+
+Node *parse_program(Lexer *lexer);
+void print_ast(Node *node); \ No newline at end of file