diff options
author | Himbeer <himbeer@disroot.org> | 2024-09-21 11:53:08 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-09-21 11:53:08 +0200 |
commit | 16786fdbfa0f0e0569fb89b030d5f84508127a6f (patch) | |
tree | 3248095420e33f1ff87bc846f8beae0f9bfa5069 /src | |
parent | f86b5fe5aef43c189587f025b99ec4b933ac8929 (diff) |
Add builtin boolean type
Diffstat (limited to 'src')
-rw-r--r-- | src/lex.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -30,6 +30,7 @@ const char *tokens[] = { [T_TRUE] = "true", [T_UNION] = "union", + [T_BOOL] = "bool", [T_FLOAT32] = "float32", [T_FLOAT64] = "float64", [T_INT8] = "int8", |