tlang-runtime-compiler/TLang.Parser/NotEqualsNode.cs

14 lines
274 B
C#

namespace TLang.Parser
{
public class NotEqualsNode : Node
{
public Node Left {get;set;}
public Node Right {get;set;}
public NotEqualsNode(Node left, Node right)
{
Left = left;
Right = right;
}
}
}