Files
2023-06-22 17:10:51 +02:00

9 lines
131 B
Kotlin
Vendored

// IGNORE_BACKEND: JVM
// WITH_STDLIB
fun box(): String {
val sb = StringBuilder("NK")
sb[0]++
return sb.toString()
}