3 lines
70 B
Kotlin
Vendored
3 lines
70 B
Kotlin
Vendored
fun String.k(): () -> String = { -> this }
|
|
|
|
fun test() = "hello".k()() |