2022-09-09 14:46:59 +03:00
..
2022-09-08 17:09:21 +03:00
2022-09-08 17:13:08 +03:00
2022-09-08 17:15:47 +03:00
2022-09-09 14:11:51 +03:00
2022-09-09 14:34:19 +03:00
2022-09-09 14:46:59 +03: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