12 lines
143 B
Go
12 lines
143 B
Go
package main
|
|
|
|
import "unicode/utf8"
|
|
|
|
func main() {
|
|
r, _ := utf8.DecodeRuneInString("Hello")
|
|
println(r < utf8.RuneSelf)
|
|
}
|
|
|
|
// Output:
|
|
// true
|