rustlings-solutions/exercises/variables
ZC 48ffcbd2c4
fix(variables5): confine the answer further
let mut number = 3; can lead to a correct answer, so the comment helps to direct the users to the intended answer.
2021-06-07 18:22:55 +08:00
..
README.md docs(exercises): updated all exercises readme files 2021-04-23 19:54:31 +02:00
variables1.rs
variables2.rs
variables3.rs
variables4.rs
variables5.rs fix(variables5): confine the answer further 2021-06-07 18:22:55 +08:00
variables6.rs

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