match statements

This commit is contained in:
2026-06-28 23:44:01 +02:00
parent 981ccb047a
commit 462632554c
12 changed files with 1057 additions and 6 deletions
+1
View File
@@ -37,6 +37,7 @@ keyword_kind :: proc(text: string) -> token.Kind {
case "continue": return .Keyword_Continue
case "defer": return .Keyword_Defer
case "yield": return .Keyword_Yield
case "match": return .Keyword_Match
case "else": return .Keyword_Else
case "true": return .Keyword_True
case "false": return .Keyword_False