damianpetla
class Test { var string: String? = null fun test() { string = “Hello" val localString = string println(localString.substring(1)) } }