6 lines
92 B
Plaintext
6 lines
92 B
Plaintext
fun box(): String {
|
|
var s = "s"
|
|
s += 1
|
|
return if (s == "s1") "OK" else "fail"
|
|
}
|