Basics of Rust
I. Constant ♾
Constants are those variables whose values cannot be changed. Once defined, there is no longer any way to change the value of a constant.
1. Syntax ✍
The data type must be specified when defining a constant.
信息
Constants are written in all capital letters, with an underscore separating each word.