Module blog::daily_rfcs::etc::_0246_const_vs_static
source · [−]Expand description
Divide global declarations into two categories(const-value/global-variable)
Note
- constants declare constant values. These represent a value, not a memory address.
- statics declare global variables. These represent a memory address.