2020-01-14 21:06:43 +01:00
|
|
|
// variables5.rs
|
|
|
|
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
|
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
fn main() {
|
2021-06-07 18:22:55 +08:00
|
|
|
let number = "T-H-R-E-E"; // don't change this line
|
2020-10-01 08:31:42 +05:30
|
|
|
println!("Spell a Number : {}", number);
|
2020-01-14 21:06:43 +01:00
|
|
|
number = 3;
|
2020-10-01 08:31:42 +05:30
|
|
|
println!("Number plus two is : {}", number + 2);
|
2020-01-14 21:06:43 +01:00
|
|
|
}
|