Files
2018-09-18 15:43:55 +03:00

7 lines
91 B
Kotlin
Vendored

fun box(): String {
1 in 1.rangeTo(10)
1..10
'h' in 'A'.rangeTo('Z')
return "OK"
}