I was actually thinking it could be used as a sort...
# announcements
c
I was actually thinking it could be used as a sort of short hand for implementing an abstract method:
Copy code
interface Bar {
    fun baz()
}

class Foo : Bar {
    baz {
        
    }

    // equivalent to...
    final override fun baz() {
        
    }
}