This example prints the characters of a string in reverse order: let word = "Backwards" for char in word.reversed() { print(char, ...
確定! 回上一頁