Files
kotlin-fork/backend.native/tests/runtime/basic/tostring1.kt
T
2016-11-15 13:27:21 +03:00

4 lines
112 B
Kotlin

fun main(args : Array<String>) {
val hello = "Hello world"
println(hello.subSequence(1, 5).toString())
}