summaryrefslogtreecommitdiff
path: root/tokenizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tokenizer.c')
-rw-r--r--tokenizer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tokenizer.c b/tokenizer.c
index b422f9e..723a4b3 100644
--- a/tokenizer.c
+++ b/tokenizer.c
@@ -5,9 +5,9 @@
*/
static const char *const keywords[KW_COUNT] =
{";", ":", ",", "(", ")", "{", "}", "[", "]", "==",
- "+=", "-=", "*=", "/=",
+ "+=", "-=", "*=", "/=", "%=",
"!=", "<=", "<", ">=", ">",
- "+", "-", "*", "!", "&", "/", "..", ".",
+ "+", "-", "*", "!", "&", "/", "%", "..", ".",
"=",
"if", "elif", "else", "while", "for", "return", "fn", "as",
"new", "del", "struct",