rustlings/exercises/variables
2021-07-07 21:02:31 +01:00
..
README.md UNSOLVED 2021-07-07 20:58:36 +01:00
variables1.rs SOLVED 2021-07-07 21:02:31 +01:00
variables2.rs SOLVED 2021-07-07 21:02:31 +01:00
variables3.rs SOLVED 2021-07-07 21:02:31 +01:00
variables4.rs SOLVED 2021-07-07 21:02:31 +01:00
variables5.rs SOLVED 2021-07-07 21:02:31 +01:00
variables6.rs SOLVED 2021-07-07 21:02:31 +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