Files

10 lines
103 B
Go

package main
import "fmt"
func main() {
str := "字Hello"
substr := str[:6]
fmt.Println(substr)
}