mut — mutable variable. const — constant.
mut:
1let mut x = 5;2x = 10; // OK
const:
1const MAX_POINTS: u32 = 100_000;2// MAX_POINTS = 200_000; // Error!
Key differences: