rustlings/exercises/01_variables
2024-04-17 23:34:27 +02:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables1.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
variables2.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
variables3.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
variables4.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
variables5.rs Clean up and unify exercises 2024-04-17 23:34:27 +02:00
variables6.rs Clean up and unify exercises 2024-04-17 23:34:27 +02: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