14 lines
268 B
Kotlin
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))
|
|
} |