akshitgautam42 3f1246caed Exercise 8
2023-11-11 20:14:21 +05:30
..
2023-11-11 15:32:59 +05:30
2023-11-11 15:41:58 +05:30
2023-11-11 15:45:41 +05:30
2023-11-11 15:48:13 +05:30
2023-11-11 15:52:49 +05:30
2023-11-11 20:14:21 +05:30

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