summaryrefslogtreecommitdiff
path: root/tokenizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'tokenizer.c')
-rw-r--r--tokenizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokenizer.c b/tokenizer.c
index 06ffdcc..342bbd7 100644
--- a/tokenizer.c
+++ b/tokenizer.c
@@ -7,7 +7,7 @@ static const char *keywords[KW_COUNT] =
"if", "elif", "else", "while", "each", "return", "fn", "as",
"new", "del", "struct",
"int", "i8", "i16", "i32", "i64",
- "u8", "u16", "u32", "u64", "float", "f32", "f64",
+ "u8", "u16", "u32", "u64", "float", "f32", "f64", "Type",
"char", "bool", "true", "false"};
static inline const char *kw_to_str(Keyword k) { return keywords[k]; }