that's the observer pattern: ``` interface myInter...
# announcements
v
that's the observer pattern:
Copy code
interface myInterface {
    var bar: Int = 0
       set(v) {
           notify(field, v) 
           field = v
       }
}