11 lines
191 B
Kotlin
Vendored
11 lines
191 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
fun test(text: String): String {
|
|
when (text.takeWhile { it.isLetter() }) {
|
|
in arrayOf("a") -> return "OK"
|
|
}
|
|
return "FAIL"
|
|
}
|
|
|
|
fun box(): String = test("a")
|