Files
master_go_programming/Section12/94.go
2023-11-29 12:42:04 +01:00

19 lines
201 B
Go

package main
import (
"fmt"
"unicode/utf8"
)
func main() {
s1 := "Golang"
fmt.Println(len(s1))
name := "Codruța"
fmt.Println(len(name))
n := utf8.RuneCountInString(name)
fmt.Println(n)
}