mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
9 lines
144 B
Kotlin
Vendored
9 lines
144 B
Kotlin
Vendored
operator fun Int.contains(i : Int) = true
|
|
|
|
fun box(): String {
|
|
when (1) {
|
|
in 2 -> return "OK"
|
|
else -> return "fail"
|
|
}
|
|
}
|