I would like to print out the grapheme clusters of which the code point from U+0021 to U+0100 in the Unicode table
for i in 21...100 {
print("\u{i} ", terminator: "")
}
The compiler presented me the following error
Question: I guess I can't use the index from the for loop array as the Unicode Scalar indicator in the string interpretation. If so, what steps should I change to use the loop correctly
Many thanks