41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
7 lines
121 B
Kotlin
7 lines
121 B
Kotlin
fun box() : String {
|
|
val b = 1+1
|
|
if ("$b" != "2") return "fail"
|
|
if ("${1+1}" != "2") return "fail"
|
|
return "OK"
|
|
}
|