Michael Cain b410ca2df7
Update exercises/variables/variables4.rs
Co-authored-by: Paul Scarrone <paul@scarrone.co>
2023-02-13 09:57:50 -06:00
..
2023-02-09 08:38:34 -06:00
2023-02-09 08:38:34 -06:00
2023-02-09 08:38:34 -06:00
2023-02-09 08:38:34 -06:00
2023-02-09 08:38:34 -06:00

Variables

In Rust, variables are immutable by default. When a variable is immutable, once a value is bound to a name, you cant change that value. You can make them mutable by adding mut in front of the variable name.

Further information