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