summaryrefslogtreecommitdiff
path: root/solutions/01_variables/variables1.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-05-21 01:47:57 +0200
committermo8it <mo8it@proton.me>2024-05-21 01:47:57 +0200
commit0f4c42d54ea7322a4ee0ae7036c058c3061e80e9 (patch)
treedd72045b9c25da9da24e28842ef89058d83f8647 /solutions/01_variables/variables1.rs
parentbde2524c3b1043da489541d4885592abe16646fa (diff)
Add solutions to intro and variables
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}");
+}