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

14 lines
268 B
C#

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