11 lines
117 B
Go
11 lines
117 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
str1 := "hello"
|
||
|
|
str2 := "汉hello"
|
||
|
|
|
||
|
|
fmt.Println(len(str1), len(str2))
|
||
|
|
}
|