Run »
fun main() { var txt = "Hello World" println(txt[0]) // first element/character println(txt[2]) // third element/character }
H
l