41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
14 lines
159 B
Kotlin
Vendored
14 lines
159 B
Kotlin
Vendored
var result = "Fail"
|
|
|
|
fun setOK(): Boolean {
|
|
result = "OK"
|
|
return true
|
|
}
|
|
|
|
fun box(): String {
|
|
if (setOK()) {
|
|
} else {
|
|
}
|
|
return result
|
|
}
|