constant in Rust

The naming convention for Constants are similar to that of variables. All characters in a constant name are usually in uppercase. Unlike declaring variables, the let keyword is not used to declare a constant.
you aren’t allowed to use mut with constants. Constants aren’t just immutable by default — they’re always immutable.
```
   const PI:f32 = 3.14;           //Declare a float constant
```