A new value was assigned to a variable declared without the mut keyword. Variables in Rust are immutable by default; add mut to the declaration to allow reassignment.
E0384
rust A new value was assigned to a variable declared without the mut keyword. Variables in Rust are immutable by default; add mut to the declaration to allow reassignment.