blob: c75f034ecd6fad4a661ee247c8cd6d22529e4070 [file] [log] [blame] [view]
# Mutability
Variable bindings are immutable by default, but this can be overridden using
the `mut` modifier.
```rust,editable,ignore,mdbook-runnable
fn main() {
let _immutable_binding = 1;
let mut mutable_binding = 1;
println!("Before mutation: {}", mutable_binding);
// Ok
mutable_binding += 1;
println!("After mutation: {}", mutable_binding);
// Error! Cannot assign a new value to an immutable variable
_immutable_binding += 1;
}
```
The compiler will throw a detailed diagnostic about mutability errors.