1 package enumdecl 2 3 type MyEnum int32 4 5 const ( 6 A MyEnum = iota 7 B MyEnum = iota 8 ) 9
View as plain text