mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
8 lines
126 B
Kotlin
Vendored
8 lines
126 B
Kotlin
Vendored
fun box(): String {
|
|
class Local {
|
|
fun result(s: String) = s
|
|
}
|
|
|
|
return Local::result.call(Local(), "OK")
|
|
}
|