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