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