namespace XUnitConsole.Compiler; public class Token { public TokenType Type { get; set; } public string Word { get; set; } = string.Empty; }