1
0
Fork 0
rustlings/exercises/variables
2022-10-11 16:50:10 +01:00
..
README.md Rustlings v5.2.1 2022-10-11 16:47:29 +01:00
variables1.rs Solutions 1 2022-10-11 16:50:10 +01:00
variables2.rs Solutions 1 2022-10-11 16:50:10 +01:00
variables3.rs Solutions 1 2022-10-11 16:50:10 +01:00
variables4.rs Solutions 1 2022-10-11 16:50:10 +01:00
variables5.rs Solutions 1 2022-10-11 16:50:10 +01:00
variables6.rs Solutions 1 2022-10-11 16:50:10 +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