10 lines
100 B
Kotlin
Vendored
10 lines
100 B
Kotlin
Vendored
package foo
|
|
|
|
fun box(): String {
|
|
1 * 2 / 3
|
|
|
|
var ok = ""
|
|
ok += "O" + "K"
|
|
|
|
return ok
|
|
} |