summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables5.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 /exercises/01_variables/variables5.rs
parentbde2524c3b1043da489541d4885592abe16646fa (diff)
Add solutions to intro and variables
Diffstat (limited to 'exercises/01_variables/variables5.rs')
-rw-r--r--exercises/01_variables/variables5.rs10
1 files changed, 6 insertions, 4 deletions
diff --git a/exercises/01_variables/variables5.rs b/exercises/01_variables/variables5.rs
index 3a74541..73f655e 100644
--- a/exercises/01_variables/variables5.rs
+++ b/exercises/01_variables/variables5.rs
@@ -1,6 +1,8 @@
fn main() {
- let number = "T-H-R-E-E"; // don't change this line
- println!("Spell a Number : {}", number);
- number = 3; // don't rename this variable
- println!("Number plus two is : {}", number + 2);
+ let number = "T-H-R-E-E"; // Don't change this line
+ println!("Spell a number: {}", number);
+
+ // TODO: Fix the compiler error by changing the line below without renaming the the variable.
+ number = 3;
+ println!("Number plus two is: {}", number + 2);
}