Naming Convention
just need to use const word instead of using naming convention like MY_CONST
Typed Constants
constant can be any GoLang - primitive types
Untyped Constants
the type of the constant would be inferred by the compiler in that case
Enumerated Constants
note that iota
is scoped to a constant block
see more on iota here