You may also want to order property initialization...
# announcements
d
You may also want to order property initialization and anonymous initializer blocks in a particular sequence.
Copy code
class Foo {
    init {
        println("init 1")
    }
    val bar: Int = computeTheValue()
    init {
        println("And bar is: $bar")
    }
}