mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
6 lines
126 B
Kotlin
Vendored
6 lines
126 B
Kotlin
Vendored
operator fun IntRange.contains(s: String): Boolean = true
|
|
|
|
fun box(): String {
|
|
return if ("s" in 0..1) "OK" else "fail"
|
|
}
|