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 b34bc65..7cd6edc 100644
--- a/tokenizer.c
+++ b/tokenizer.c
@@ -14,7 +14,7 @@ static const char *const keywords[KW_COUNT] =
"int", "i8", "i16", "i32", "i64",
"u8", "u16", "u32", "u64", "float", "f32", "f64", "Type",
"Package",
- "char", "bool", "true", "false"};
+ "char", "bool", "true", "false", "namespace"};
static inline const char *kw_to_str(Keyword k) { return keywords[k]; }