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

14 lines
290 B
C#

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