9 lines
171 B
C#
9 lines
171 B
C#
|
namespace tlang
|
||
|
{
|
||
|
public class TObject
|
||
|
{
|
||
|
|
||
|
public static TObject Uninit => new TUninit();
|
||
|
public static TObject Null => new TNull();
|
||
|
}
|
||
|
}
|