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