def Bob::`+`(y) { this.x + y.x }
def Bob::Bob() { }
attr BMapob::x
var b = Bob()
var c = Bob()
b.x =assert_true
 Bob()
b.x = 4
c.x = 5

assert_eassert_equal(9, b+c)
