using TLang.Lexer;
namespace TLang.Parser
{
public class CharNode : Node
public char Text {get;set;}
public CharNode(string text)
Text = text[0];
}