Beginner
Go (Golang)
Q39 / 100
What is a rune in Go?
Correct! Well done.
Incorrect.
The correct answer is B) An alias for int32, representing a Unicode code point
B
Correct Answer
An alias for int32, representing a Unicode code point
Explanation
A rune is an alias for int32, holding a single Unicode code point. for _, r := range "Go" iterates runes, not bytes.
Progress
39/100