Add String.subSequence implementation. (#61)

This commit is contained in:
Nikolay Igotti
2016-11-15 13:27:21 +03:00
committed by GitHub
parent 69b7cdb866
commit c5cfa0ac4f
5 changed files with 34 additions and 4 deletions
@@ -0,0 +1,4 @@
fun main(args : Array<String>) {
val hello = "Hello world"
println(hello.subSequence(1, 5).toString())
}