Why there is need of rune
i.e. Unicode strings as a separate type from string
i.e. ASCII strings? Couldn't it just both type of strings have one type i.e. string
like how languages have it?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (3)
Two things;
A rune represents a single Unicode Code Point (UTF-32 encoded, I assume).
A string represents a sequence of Unicode Code Points, UTF-8 encoded (in Go).
Some comments may only be visible to logged-in visitors. Sign in to view all comments.