8 lines
133 B
Kotlin
Vendored
8 lines
133 B
Kotlin
Vendored
fun foo(): Int {
|
|
val a = "test"
|
|
val b = "test"
|
|
return a.compareTo(b)
|
|
}
|
|
|
|
fun box(): String = if(foo() == 0) "OK" else "Fail"
|