Zet - How do you make a variable mutable in rust?

How do you make a variable mutable in rust?

Use the mut keyword

let mut x = 5;

#rust