2023-04-27 22:21:14 +02:00
..
2023-01-01 21:07:06 +01:00
f
2023-01-01 19:49:25 -03:00
f
2023-01-01 19:49:25 -03:00
2023-01-03 18:11:33 +01:00
2023-01-03 18:11:33 +01:00
2023-01-03 18:11:33 +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