From b2c539fadfa7ea3eea2e5f7c0c37b5f5f1370c5a Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Tue, 3 Jan 2023 09:45:40 -0800 Subject: actually evaluates and prints something now! --- src/include/parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/parser.h') diff --git a/src/include/parser.h b/src/include/parser.h index 64ae792..7b26696 100644 --- a/src/include/parser.h +++ b/src/include/parser.h @@ -44,5 +44,5 @@ void parse_bind(parser_t *parser); ast_t *parse_expr(parser_t *parser); -ast_t *read_in(char *s); +ast_t *parse_all(parser_t *parser); #endif -- cgit