Enum Golang
const (
A = iota
C
T
G
)
Cloudy Cow
const (
A = iota
C
T
G
)
type Base int
const (
A Base = iota
C
T
G
)