9 lines
141 B
Kotlin
9 lines
141 B
Kotlin
fun resolveMe() {
|
|
receive(functionWithLazyBody())
|
|
}
|
|
|
|
fun receive(value: String){}
|
|
|
|
fun functionWithLazyBody(): String {
|
|
return "42"
|
|
} |