rustlings/exercises/01_variables
2024-04-11 02:51:02 +02:00
..
README.md Update Exercises Directory Names to Reflect Order 2023-10-16 07:37:12 -04:00
variables1.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
variables2.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
variables3.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
variables4.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
variables5.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +02:00
variables6.rs Remove "I AM NOT DONE" and the verify mode and add AppState 2024-04-11 02:51:02 +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