mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
11 lines
191 B
Go
11 lines
191 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
str1 := "Hi, my маленький friend!!!"
|
|
runes := []rune(str1)
|
|
substr := string(runes[4:16])
|
|
fmt.Println(substr) // my маленький
|
|
}
|