5 lines
60 B
Kotlin
Vendored
5 lines
60 B
Kotlin
Vendored
fun foo(s: String = "O") = s
|
|
|
|
fun box() = foo() + foo("K")
|
|
|