mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
9 lines
139 B
Kotlin
9 lines
139 B
Kotlin
class Z {}
|
|
|
|
fun box(): String {
|
|
fun Z.plus(s : String, d : String = "K") : String {
|
|
return s + d
|
|
}
|
|
return Z() + "O"
|
|
}
|