8 lines
156 B
Kotlin
8 lines
156 B
Kotlin
package runtime.basic.tostring1
|
|
|
|
import kotlin.test.*
|
|
|
|
@Test fun runTest() {
|
|
val hello = "Hello world"
|
|
println(hello.subSequence(1, 5).toString())
|
|
} |