another question... you can override the mutabilit...
# announcements
m
another question... you can override the mutability of a variable defined in an interface
Copy code
interface A { val b : Int }

class B {
    override var b: Int = 0
}