4 lines
83 B
Plaintext
4 lines
83 B
Plaintext
fun box() : String {
|
|
var a = 10
|
|
return if(a?.plus(10) == 20) "OK" else "fail"
|
|
} |