let string = "hello" var index = string.startIndex print(string[index]) index = string.index(after: index) print(string[index])