Files
2020-12-16 19:52:30 +03:00

4 lines
71 B
Kotlin
Vendored

fun String.k(): () -> String = { -> this }
fun test() = "hello".k()()