Hariprasath_Ganapathi 8be313a1dd
Update variables6.rs
2024-11-13 10:38:12 +05:30
..
2024-08-17 14:56:52 +02:00
2024-06-14 13:32:37 +02:00
2024-11-13 10:38:12 +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