stephan.klauberg 8f79ae0571 import
2023-09-20 18:30:56 +02:00
..
2023-09-16 07:24:01 +02:00
2023-09-16 07:33:44 +02:00
2023-09-16 07:33:44 +02:00
2023-09-20 18:30:56 +02:00
2023-09-20 18:30:56 +02:00
2023-09-20 18:30:56 +02: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