5 lines
83 B
Kotlin
Vendored
5 lines
83 B
Kotlin
Vendored
fun box(): String {
|
|
fun foo(s: String = "O") = s
|
|
return foo() + foo("K")
|
|
}
|