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