Files
master_go_programming/Section12/96.go
sebastian ec3676ddd4 last 2 lectures of section 12
last 2 lectures of section 12
2025-02-05 11:37:23 +01:00

20 lines
215 B
Go

package main
import (
"fmt"
)
func main() {
s1 := "I love Golang!"
fmt.Println(s1[2:5])
s2 := "我爱戈兰"
fmt.Println(s2[0:2])
rs := []rune(s2)
fmt.Printf("%T\n", rs)
fmt.Println(string(rs[0:3]))
}