mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-08-11 16:40:24 +02:00
..
2022-03-29 11:44:06 +02:00
2021-04-23 19:54:31 +02:00
2021-04-24 13:15:34 -04:00
2019-11-11 17:21:06 +01:00
2020-05-25 10:09:11 +02:00
2019-11-11 17:21:06 +01:00
2021-06-07 18:22:55 +08:00
2020-06-03 13:34:43 +02:00
Variables
In Rust, variables are immutable by default. When a variable is immutable, once a value is bound to a name, you can’t change that value. You can make them mutable by adding mut in front of the variable name.