Nested lazy

Report a typo

val a: String by lazy {
    val b: String by lazy {
        val c: String by lazy {
            print("d")
            "c"
        }
        print("b")
        c
    }
    print("a")
    b
}
print(a)

What will be displayed in the console?

Enter a short text
___

Create a free account to access the full topic