mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
10 lines
190 B
Kotlin
Vendored
10 lines
190 B
Kotlin
Vendored
import java.nio.CharBuffer
|
|
|
|
fun box(): String {
|
|
val cb = CharBuffer.wrap("OK")
|
|
cb.position(1)
|
|
val o = cb[0]
|
|
val k = (cb as CharSequence).get(0)
|
|
return o.toString() + k
|
|
}
|