rustlings/exercises/01_variables
kingecg c40d940946 at strings 2025-09-23 22:33:47 +08:00
..
README.md at strings 2025-09-23 22:33:47 +08:00
variables1.rs at strings 2025-09-23 22:33:47 +08:00
variables2.rs at strings 2025-09-23 22:33:47 +08:00
variables3.rs at strings 2025-09-23 22:33:47 +08:00
variables4.rs at strings 2025-09-23 22:33:47 +08:00
variables5.rs at strings 2025-09-23 22:33:47 +08:00
variables6.rs at strings 2025-09-23 22:33:47 +08:00

README.md

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