diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-03 09:45:40 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-03 09:45:40 -0800 |
commit | b2c539fadfa7ea3eea2e5f7c0c37b5f5f1370c5a (patch) | |
tree | 0f4b9db8c6bf345c9011667c9fbb61393d93a347 /src/include/parser.h | |
parent | 9f342255a2260480701cc2ac2d0c623d4aba1348 (diff) |
actually evaluates and prints something now!
Diffstat (limited to 'src/include/parser.h')
-rw-r--r-- | src/include/parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |