41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
7 lines
150 B
Kotlin
7 lines
150 B
Kotlin
fun box () : String {
|
|
val s = java.util.ArrayList<String>()
|
|
s.add("foo")
|
|
s[0] += "bar"
|
|
return if(s[0] == "foobar") "OK" else "fail"
|
|
}
|