rustlings/exercises/variables
2023-10-15 18:00:35 +01:00
..
README.md docs(variables): wrap mut keyword with backtick 2023-03-28 09:58:59 +03:30
variables1.rs Completed some exercises 2023-10-15 18:00:35 +01:00
variables2.rs Completed some exercises 2023-10-15 18:00:35 +01:00
variables3.rs Completed some exercises 2023-10-15 18:00:35 +01:00
variables4.rs Completed some exercises 2023-10-15 18:00:35 +01:00
variables5.rs Completed some exercises 2023-10-15 18:00:35 +01:00
variables6.rs Completed some exercises 2023-10-15 18:00:35 +01: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