leetcode-go/main.go

12 lines
132 B
Go
Raw Permalink Normal View History

2022-05-22 15:54:36 +00:00
package main
2022-06-19 08:59:41 +00:00
import "fmt"
2022-05-22 15:54:36 +00:00
func main() {
2022-06-19 08:59:41 +00:00
s := "Hello 你好"
fmt.Println(s[2], s[6])
rs := []rune(s)
println(string(rs[6]))
2022-06-04 06:34:28 +00:00
2022-05-22 15:54:36 +00:00
}