Variable declarations seperate from assignment

This commit is contained in:
nub31
2025-05-27 11:31:28 +02:00
parent 0aa14c78fe
commit f08d0ee930
9 changed files with 115 additions and 67 deletions

View File

@@ -17,6 +17,7 @@ public class Lexer
["return"] = Symbol.Return,
["new"] = Symbol.New,
["struct"] = Symbol.Struct,
["let"] = Symbol.Let,
};
private static readonly Dictionary<string, Modifier> Modifiers = new()