Пример #1
0
 public virtual bln equal(obj val)
 {
     if (this.type == val.type)
     {
         if (this.__obj__ == val.__obj__)
             return bln.create(true);
         else
             return bln.create(false);
     }
     return bln.create(false);
 }
Пример #2
0
 public virtual obj exec(obj args)
 {
     throw new NotImplementedException();
 }