rustlings-solutions/exercises/01_variables
2024-01-30 19:51:07 +01:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables1.rs My solution to rustlings course 2024-01-30 19:51:07 +01:00
variables2.rs My solution to rustlings course 2024-01-30 19:51:07 +01:00
variables3.rs My solution to rustlings course 2024-01-30 19:51:07 +01:00
variables4.rs My solution to rustlings course 2024-01-30 19:51:07 +01:00
variables5.rs My solution to rustlings course 2024-01-30 19:51:07 +01:00
variables6.rs My solution to rustlings course 2024-01-30 19:51:07 +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