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

14 lines
290 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
namespace TLang.Parser
{
public class GreaterThanEqualsNode : Node
{
2023-07-29 00:11:09 +00:00
public Node Left {get;set;}
public Node Right {get;set;}
2023-07-27 03:31:32 +00:00
public GreaterThanEqualsNode(Node left, Node right)
{
Left = left;
Right = right;
}
}
}