Two lazy variables

Report a typo

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

What will be displayed in the console?

Enter a short text
___

Create a free account to access the full topic