rustlings-solutions/exercises/variables
2022-03-29 11:44:06 +02:00
..
mod.rs fix: Include exercises folder in the project structure behind a feature (#917) 2022-03-29 11:44:06 +02:00
README.md
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