topics/go/language/constants/README.md
Constants are a way to create a named identifier whose value can never change. They also provide an incredible amount of flexibility to the language. The way constants are implemented in Go is very unique.
Constants specification
Constants - Rob Pike
Introduction To Numeric Constants In Go - William Kennedy
Declare and initialize constants (Go Playground)
Parallel type system (Kind) (Go Playground)
iota (Go Playground)
Implicit conversion (Go Playground)
Part A: Declare an untyped and typed constant and display their values.
Part B: Divide two literal constants into a typed variable and display the value.
Template (Go Playground) | Answer (Go Playground)
All material is licensed under the Apache License Version 2.0, January 2004.