rustlings/exercises/variables/variables5.rs
Mustakim-Khan 0646013237 seance 1
2021-04-13 17:33:22 +02:00

12 lines
272 B
Rust

// variables5.rs
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)
fn main() {
let number = "T-H-R-E-E";
println!("Spell a Number : {}", number);
let number = 3;
println!("Number plus two is : {}", number + 2);
}