summaryrefslogtreecommitdiff
path: root/src/compiler/lexer.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-10 00:17:29 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-02-10 00:17:29 +0330
commit302cc65d3e59937742c18475d63e22c482176fa7 (patch)
tree69fdaf179bc71eb39643ca3b709f18bd57866df7 /src/compiler/lexer.h
parent07cca00060de91569074f61172c9406f01eaefe7 (diff)
add - * / %
Diffstat (limited to 'src/compiler/lexer.h')
-rw-r--r--src/compiler/lexer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compiler/lexer.h b/src/compiler/lexer.h
index 6c0660f..6723cc9 100644
--- a/src/compiler/lexer.h
+++ b/src/compiler/lexer.h
@@ -27,6 +27,10 @@ typedef enum LexerToken {
LEXER_TOKEN_SYMBOL_ASSIGN,
LEXER_TOKEN_SYMBOL_COMMA,
LEXER_TOKEN_SYMBOL_PLUS,
+ LEXER_TOKEN_SYMBOL_MINUS,
+ LEXER_TOKEN_SYMBOL_MULTIPLY,
+ LEXER_TOKEN_SYMBOL_DIVIDE,
+ LEXER_TOKEN_SYMBOL_MODULO,
LEXER_TOKEN_NONE,
} LexerToken;