Abrar Habib 9bb3659f30
Merge pull request #1 from dddictionary/exercises
progress to strings3.rs
2023-03-29 20:09:52 -04:00
..
2023-03-29 20:03:18 -04:00
2023-03-29 20:03:18 -04:00
2023-03-29 20:03:18 -04:00
2023-03-29 20:03:18 -04:00
2023-03-29 20:03:18 -04:00
2023-03-29 20:03:18 -04: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