Hi this code
str = "Héllo World"
for i in str
println(i)
end
produce this output
H
e
́
l
l
o
W
o
r
l
d
How to make it produce
H
é
l
l
o
W
o
r
l
d
(On a side note, if you run it in vs code repl the line with only ́ from the first output looks empty)
5 posts - 5 participants