blob: f28569e1d971d5f37edac2dcace92f61a4930f35 [file] [log] [blame]
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"
}