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

12 lines
183 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
namespace TLang.Parser
{
public class GetVariableNode : SymbolNode
{
public GetVariableNode(string name)
{
Name = name;
}
}
}