rustlings_solutions/variables
2024-01-17 14:52:52 -05:00
..
README.md ye 2024-01-17 14:52:52 -05:00
variables1.rs ye 2024-01-17 14:52:52 -05:00
variables2.rs ye 2024-01-17 14:52:52 -05:00
variables3.rs ye 2024-01-17 14:52:52 -05:00
variables4.rs ye 2024-01-17 14:52:52 -05:00
variables5.rs ye 2024-01-17 14:52:52 -05:00
variables6.rs ye 2024-01-17 14:52:52 -05: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