Use proper public keyword

This commit is contained in:
2026-04-29 11:43:14 +02:00
parent e09bd72441
commit f90cad2b96
6 changed files with 54 additions and 5 deletions
+1 -1
View File
@@ -26,11 +26,11 @@ typedef struct {
const char* keyword;
TokenType token;
} KeywordMap;
static const KeywordMap keywords[] = {
{"module", TOKEN_MODULE},
{"import", TOKEN_IMPORT},
{"alias", TOKEN_ALIAS},
{"public", TOKEN_PUBLIC},
{"void", TOKEN_VOID},
};