Simple case: ``` fun main(args: Array<String&g...
# announcements
j
Simple case:
Copy code
fun main(args: Array<String>) {
    println(Bug().foo)
}

public class Bug {
    val foo: String = initFoo()

    fun initFoo(): String {
        return oops
    }

    val oops = "Uh oh”
}