Esempio n. 1
0
 public bool NotEqual(LangObject other)
 {
     return(this.Smaller(other) || other.Smaller(this));
 }
Esempio n. 2
0
 public bool SmallerEqual(LangObject other)
 {
     return(!other.Smaller(this));
 }