Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumGoiota and typed enumsSingle-choice MCQ

For a typed enum `type Color int` with iota constants Red, Green, Blue, what is the zero value of a Color variable declared as `var c Color`?

type Color int const ( Red Color = iota Green Blue )