namespace tlang
{
public class TArray : TObject
public override bool AsBoolean => Items.Count > 0;
public TArray()
}
public List<TObject> Items {get;set;}=new List<TObject>();