rustlings/exercises/variables
huganardo 7da4ad469a First commit updating my worked solution so far
This commit is mainly to test to see if the readme.md updates when I change it 👍
2023-07-31 15:37:06 +10:00
..
README.md docs(variables): wrap mut keyword with backtick 2023-03-28 09:58:59 +03:30
variables1.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
variables2.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
variables3.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
variables4.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
variables5.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00
variables6.rs First commit updating my worked solution so far 2023-07-31 15:37:06 +10:00

Variables

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

Further information