diff --git a/compiler/lexer/lexer.odin b/compiler/lexer/lexer.odin index 769e0b8..0bb3541 100644 --- a/compiler/lexer/lexer.odin +++ b/compiler/lexer/lexer.odin @@ -16,6 +16,7 @@ keyword_kind :: proc(text: string) -> token.Kind { switch text { case "test": return .Keyword_Test case "func": return .Keyword_Func + case "proc": return .Keyword_Func case "c_func": return .Keyword_C_Func case "struct": return .Keyword_Struct case "c_struct": return .Keyword_C_Struct