RosettaCodeData/Task/Unicode-strings/Go/unicode-strings-2.go
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

4 lines
87 B
Go

w := "voilà"
for i := 0; i < len(w); i++ {
fmt.Println(i, w[i])
}