tlang-runtime-compiler/TLang.VM/TString.cs

12 lines
198 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
namespace TLang.VM
{
public class TString : TObject
{
public string Value {get;set;}
public TString(string value)
{
this.Value = value;
}
}
}