5 lines
79 B
Kotlin
Vendored
5 lines
79 B
Kotlin
Vendored
fun test(
|
|
val f: String.() -> Int = { length }
|
|
): Int {
|
|
return "".f()
|
|
} |