Files
kotlin-fork/backend.native/tests/runtime/basic/tostring2.kt
T
2017-10-20 18:25:05 +03:00

14 lines
268 B
Kotlin

package runtime.basic.tostring2
import kotlin.test.*
@Test fun runTest() {
val hello = "Hello"
val array = hello.toCharArray()
for (ch in array) {
print(ch)
print(" ")
}
println()
println(fromCharArray(array, 0, array.size))
}