fixed number parsing

This commit is contained in:
Lorenzo Torres 2025-12-03 21:02:31 +01:00
parent 6d73af4fbb
commit df1b336c7c
3 changed files with 39 additions and 7 deletions

View file

@ -130,7 +130,7 @@ typedef struct _ast_node {
struct _ast_node *right;
unary_op operator;
} unary;
u64 integer;
i64 integer;
f64 flt; // float
struct {
char *start;