summaryrefslogtreecommitdiff
path: root/solutions/01_variables/variables1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'solutions/01_variables/variables1.rs')
-rw-r--r--solutions/01_variables/variables1.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/solutions/01_variables/variables1.rs b/solutions/01_variables/variables1.rs
index 4e18198..58d046b 100644
--- a/solutions/01_variables/variables1.rs
+++ b/solutions/01_variables/variables1.rs
@@ -1 +1,6 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+fn main() {
+ // Declaring variables requires the `let` keyword.
+ let x = 5;
+
+ println!("x has the value {x}");
+}