Constants are declared like variables, but using the const keyword:
const Greeting string = "Hello World"
const Years int = 10
const Truth bool = true
Like for variables, names starting with an upper case letter are exported (public), names starting with lower case are not.
// not e...