summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-03 13:19:58 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-03 13:19:58 -0800
commit3c35be76e515098431643155b66e61a1c64816ae (patch)
tree4a11454acce1965c52e511dd44dba2e1dd73ee67 /src/main.c
parentb2c539fadfa7ea3eea2e5f7c0c37b5f5f1370c5a (diff)
done the parser in theory
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 7da03dc..12ec987 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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);