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

8 lines
154 B
C#
Raw Normal View History

2023-07-29 00:11:09 +00:00
namespace TLang.VM
{
2023-07-30 07:55:10 +00:00
public abstract class TObject
2023-07-29 00:11:09 +00:00
{
2023-07-30 07:55:10 +00:00
public abstract string Type {get;}
public abstract bool True { get; }
2023-07-29 00:11:09 +00:00
}
}