What is a rune in Go?
rune
I\'ve been googling but Golang only says in one line: rune is an alias for int32.
int32
But h
A rune is an int32 value, and therefore it is a Go type that is used for representing a Unicode code point. A Unicode code point or code position is a numerical value that is usually used for representing single Unicode characters;