diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-27 01:25:24 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-01-27 01:25:24 +0330 |
commit | 64331c144518b8ab1c3cf08473771e0d3f14f67b (patch) | |
tree | c378fccbddcc4e0972a7a426b4bf464efc1129bf /src/compiler/lexer.h | |
parent | bb87887ec288f341256d324f271bac6267fc83f4 (diff) |
add print_u64 to be able to print u64 numbers
Diffstat (limited to 'src/compiler/lexer.h')
-rw-r--r-- | src/compiler/lexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h index f77522d..c3871e0 100644 --- a/src/compiler/lexer.h +++ b/src/compiler/lexer.h @@ -6,6 +6,7 @@ typedef enum LexerToken { LEXER_TOKEN_IDENTIFIER, LEXER_TOKEN_KEYWORD_VOID, LEXER_TOKEN_KEYWORD_PRINT, + LEXER_TOKEN_KEYWORD_PRINT_U64, LEXER_TOKEN_NUMBER, |