Create an enum from a group of related constants in Go

Viewed 20313

What is preferred (or right) way to group large number of related constants in the Go language? For example C# and C++ both have enum for this.

4 Answers
Related