5 lines
118 B
Kotlin
5 lines
118 B
Kotlin
fun box(): String {
|
|
val sum = fun Int.(other: Int) = this + other
|
|
return if (1 sum 2 == 3) "OK" else "Fail"
|
|
}
|