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

14 lines
272 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
namespace TLang.Parser
{
public class SubtractNode : 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 SubtractNode(Node left, Node right)
{
Left = left;
Right = right;
}
}
}