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); }
public virtual obj exec(obj args) { throw new NotImplementedException(); }