2020-01-14 20:06:43 +00:00
|
|
|
// variables5.rs
|
|
|
|
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
|
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
fn main() {
|
2020-10-01 03:01:42 +00:00
|
|
|
let number = "T-H-R-E-E";
|
|
|
|
println!("Spell a Number : {}", number);
|
2020-01-14 20:06:43 +00:00
|
|
|
number = 3;
|
2020-10-01 03:01:42 +00:00
|
|
|
println!("Number plus two is : {}", number + 2);
|
2020-01-14 20:06:43 +00:00
|
|
|
}
|