summaryrefslogtreecommitdiff
path: root/solutions/01_variables/variables4.rs
diff options
context:
space:
mode:
Diffstat (limited to 'solutions/01_variables/variables4.rs')
-rw-r--r--solutions/01_variables/variables4.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/solutions/01_variables/variables4.rs b/solutions/01_variables/variables4.rs
index 4e18198..0540caa 100644
--- a/solutions/01_variables/variables4.rs
+++ b/solutions/01_variables/variables4.rs
@@ -1 +1,9 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+fn main() {
+ // In Rust, variables are immutable by default.
+ // Adding the `mut` keyword after `let` makes the declared variable mutable.
+ let mut x = 3;
+ println!("Number {x}");
+
+ x = 5; // Don't change this line
+ println!("Number {x}");
+}