rustlings/exercises/01_variables
oM c71a5852cf
Update variables2.rs
- Improved phrasing.
2024-01-30 17:13:35 +08:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables1.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables2.rs Update variables2.rs 2024-01-30 17:13:35 +08:00
variables3.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables4.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables5.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables6.rs Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04: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