feat(furc): add access specifiers to functions

Introduce public and private access specifiers to functions.

Closes: #26
This commit is contained in:
2026-06-28 13:08:15 +02:00
parent 8702298cd2
commit 0bcbe1d7d1
4 changed files with 84 additions and 23 deletions
+2
View File
@@ -102,6 +102,8 @@ token_r lexer::next_token() {
{ "while", keyword_token::While },
{ "import", keyword_token::Import },
{ "native", keyword_token::Native },
{ "public", keyword_token::Public },
{ "private", keyword_token::Private },
{ "int32", keyword_token::Int32 },
};