diff --git a/exercises/variables/variables1.rs b/exercises/variables/variables1.rs index 4a3af73..149d5ce 100644 --- a/exercises/variables/variables1.rs +++ b/exercises/variables/variables1.rs @@ -6,9 +6,8 @@ // even after you already figured it out. If you got everything working and // feel ready for the next exercise, remove the `I AM NOT DONE` comment below. -// I AM NOT DONE fn main() { - x = 5; + let x = 5; println!("x has the value {}", x); } diff --git a/exercises/variables/variables2.rs b/exercises/variables/variables2.rs index 7774a8f..87cf404 100644 --- a/exercises/variables/variables2.rs +++ b/exercises/variables/variables2.rs @@ -1,13 +1,12 @@ // variables2.rs // Make me compile! Execute the command `rustlings hint variables2` if you want a hint :) -// I AM NOT DONE fn main() { - let x; + let x = 7; if x == 10 { println!("Ten!"); } else { - println!("Not ten!"); + println!("Not ten, but {}", x); } } diff --git a/exercises/variables/variables3.rs b/exercises/variables/variables3.rs index 30ec48f..3b38519 100644 --- a/exercises/variables/variables3.rs +++ b/exercises/variables/variables3.rs @@ -1,11 +1,12 @@ // variables3.rs // Make me compile! Execute the command `rustlings hint variables3` if you want a hint :) -// I AM NOT DONE fn main() { - let x = 3; + let mut x = 3; println!("Number {}", x); + println!("Then changed to "); x = 5; // don't change this line println!("Number {}", x); + println!("Because of the keyword mut"); } diff --git a/exercises/variables/variables4.rs b/exercises/variables/variables4.rs index 77f1e9a..e5e09f4 100644 --- a/exercises/variables/variables4.rs +++ b/exercises/variables/variables4.rs @@ -1,9 +1,8 @@ // variables4.rs // Make me compile! Execute the command `rustlings hint variables4` if you want a hint :) -// I AM NOT DONE fn main() { - let x: i32; + let x: i32 = 90; println!("Number {}", x); } diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs index da37ae9..12c4e81 100644 --- a/exercises/variables/variables5.rs +++ b/exercises/variables/variables5.rs @@ -1,11 +1,11 @@ // variables5.rs // Make me compile! Execute the command `rustlings hint variables5` if you want a hint :) -// I AM NOT DONE fn main() { - let number = "T-H-R-E-E"; - println!("Spell a Number : {}", number); - number = 3; + let mut number = "T-H-R-E-E"; + println!("Spell a Number (string): {}", number); + let number = 3; + println!("new number (type int) is : {}", number); println!("Number plus two is : {}", number + 2); } diff --git a/exercises/variables/variables6.rs b/exercises/variables/variables6.rs index 9866691..dbd625f 100644 --- a/exercises/variables/variables6.rs +++ b/exercises/variables/variables6.rs @@ -1,9 +1,9 @@ // variables6.rs // Make me compile! Execute the command `rustlings hint variables6` if you want a hint :) -// I AM NOT DONE -const NUMBER = 3; +//const NUMBER: i32 = 3; +const NUMBER: i64 = 300; fn main() { println!("Number {}", NUMBER); }