Overrideable constants
Static configuration pieces that affect compilation
const
const
Constant definition.
Constants can be used all across functions, exported and imported. If a constant is defined using ?=
, it can be overridden by value via compiler flags or imported values.
You can assign only literals to constants. Constant type is the same as literal type. You can override only with a subtype of that literal type.
Last updated
Was this helpful?