Olaoye Kayode Samuel df6f4a3e73
Update variables2.rs
initialized x to 20
2021-11-18 20:52:24 +01:00
..
2021-11-18 20:52:24 +01: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