mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
13 lines
205 B
Kotlin
Vendored
13 lines
205 B
Kotlin
Vendored
class KeySpan(val left: String) {
|
|
|
|
public fun matches(value : String) : Boolean {
|
|
|
|
return left > value && left > value
|
|
}
|
|
|
|
}
|
|
|
|
fun box() : String {
|
|
KeySpan("1").matches("3")
|
|
return "OK"
|
|
} |