Constants

202307051956
Status: #idea
Tags: Rust

Constants

Warning

Data type of the constant must be annotated

Info

const can be used in global scope

Important

Constants are computed at compile-time
Immutable variables are computed at run-time


References

  1. https://rust-book.cs.brown.edu/ch03-01-variables-and-mutability.html
  2. Variables and Mutability
  3. https://stackoverflow.com/questions/70760247/why-do-we-need-constants-in-rust-if-we-have-immutable-variables/70760454#70760454