booleans, comparisons, and if/else

This commit is contained in:
2026-06-21 20:20:55 +02:00
parent 19e9fbdd4b
commit c90ada608e
13 changed files with 1064 additions and 518 deletions
+14
View File
@@ -15,6 +15,13 @@ Kind :: enum u8 {
Underscore,
Colon_Colon,
Equal,
Equal_Equal,
Bang,
Bang_Equal,
Less,
Less_Equal,
Greater,
Greater_Equal,
Plus,
Minus,
Dot,
@@ -42,7 +49,14 @@ Kind :: enum u8 {
Keyword_Mut,
Keyword_None,
Keyword_Orelse,
Keyword_And,
Keyword_Or,
Keyword_If,
Keyword_Else,
Keyword_True,
Keyword_False,
Keyword_Void,
Keyword_Bool,
Keyword_Int,
Keyword_I8,
Keyword_I16,