// Adding the `mut` keyword makes a variable mutable. function main() -> u32 { let mut a = 1u32; a = 0; return a }