diff options
author | Preston Pan <preston@nullring.xyz> | 2023-01-03 13:19:58 -0800 |
---|---|---|
committer | Preston Pan <preston@nullring.xyz> | 2023-01-03 13:19:58 -0800 |
commit | 3c35be76e515098431643155b66e61a1c64816ae (patch) | |
tree | 4a11454acce1965c52e511dd44dba2e1dd73ee67 /src/main.c | |
parent | b2c539fadfa7ea3eea2e5f7c0c37b5f5f1370c5a (diff) |
done the parser in theory
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -42,7 +42,7 @@ int main(int argc, char **argv) { /* } */ /* TEST PARSER, VISITOR, PRINTER */ - lexer_t *lexer = init_lexer("\"hello world\""); + lexer_t *lexer = init_lexer("34.4"); parser_t *parser = init_parser(lexer); ast_t *root = parse_expr(parser); |