mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 03:55:28 +08:00
13 lines
143 B
Go
13 lines
143 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
s := "\u00ff\u754c"
|
|
for i, c := range s {
|
|
fmt.Printf("%d:%c ", i, c)
|
|
}
|
|
}
|
|
|
|
// prints: 0:ÿ 2:界
|