ios
for - string
boywin1992
2022. 5. 20. 20:16
728x90
let str = "hello world"
for item in str {
print(item)
}
/*
result :
h
e
l
l
o
w
o
r
l
d
*/
728x90