const
A const
declaration gives a name to a
constant immutable value.
A const
can be declared at module-scope or within a function.
A const
declaration must have an initializer, and can have an optional type:
|
|
The initializer of a const
must be a
const-expression.