why is more than one `init` block allowed, what wo...
# announcements
h
why is more than one
init
block allowed, what would be a possible use case?
Copy code
class Foo {
    init {
        println("init 1")
    }
    init {
        println("init 2")
    }
    init {
        println("init 3")
    }
}