5 lines
73 B
Kotlin
Vendored
5 lines
73 B
Kotlin
Vendored
val foo: ((String) -> String) = run {
|
|
{ it }
|
|
}
|
|
|
|
fun box() = foo("OK") |