Files
2018-07-03 19:51:58 +03:00

7 lines
104 B
Kotlin
Vendored

fun box(): String {
if (12.toString().equals("13")) {
return "Fail"
}
return "OK"
}